小生拙见如下:
class Outer {
/*定义返回值类型为Inter的静态方法(由Outer.method()可以确定静态)method
从调用method()后还可以再次调用show()可确定method()的此方法的返回值为一个对象
返回什么对象呢?因为show方法是Inter接口里面的抽象方法,所以返回值类型为Inter
接口里面的show()是抽象的。所以需要返回一个重写了show()的Inter接口的匿名实现类对象
*/
public static Inter method(){
return new Inter(){
public void show(){
System.out.println("HelloWorld");
}
};
}
} |