class Test {
public static void main(String[] args){
Inter.Port_2 a = new Inter().Port_2();
a.menthod();
}
}
interface Port_1{
public abstract void menthod();
}
class Inter {
public void method(){
new Port_1(){
public void menthod(){
System.out.println("匿名局部内部类");
}
}.menthod();
}
class Port_2 implements Port_1{
public void menthod(){
System.out.println("内部类");
}
}
}
Test.java:3: 错误: 找不到符号
Inter.Port_2 a = new Inter().Port_2();
^
符号: 方法 Port_2()
位置: 类 Inter
1 个错误
|
|