第一题代码
[Java] 纯文本查看 复制代码 interface Inter {
void show();
}
class Outer{
static Inter method(){
return new Inter(){ public void show(){System.out.println("show1");} };
}
}
class NiMingTest {
public static void main(String[] args) {
Outer.method().show();
}
}
第二题代码
[Java] 纯文本查看 复制代码 class NiMingTest {
public static void main(String[] args) {
function(new Inter(){
public void show(){
System.out.println("show2");
}
});
}
public static void function(Inter in){
in.show();
}
}
interface Inter {
void show();
} |