package VideoStudy;
interface Inter{
void show();
}
class Outer //为什么此处不用写上 implements Inter呢?
{//通过匿名内部类补足Outer类中的代码。
public static Inter method()
{
return new Inter()
{
public void show(){System.out.println("OK!");}
};
}
}
class InnerClassDemo7 {
public static void main(String[] args) {
Outer.method().show();
}
}
|
|