本帖最后由 442851994 于 2012-11-1 18:15 编辑
class Demo6
{
public static void main(String[] args)
{
System.out.println("Hello World!");
}
}
interface A
{
void show();
}
interface B
{
String show();
}
class C implements A,B
{
public void show(){
}
public String show(){}
} |
|