这样是拆开的写法,看上去会不会有帮助呢?代码如下:
interface Inter {
void show();
}
class Outer {
public static Inter method() {
class Inner implements Inter{
public void show(){
System.out.println("HelloWorld2");
}
}
return new Inner();
}
}
class Demo {
public static void main(String[] args) {
Outer.method().show();
}
}
赶紧发个帖子,凑够技术分数,后面再发详细的讲解,供大家交流 |
|