【发布时间】:2010-10-16 04:39:03
【问题描述】:
interface Int {
public void show();
}
public class Test {
public static void main(String[] args) {
Int t1 = new Int() {
public void show() {
System.out.println("message");
}
};
t1.show();
}
}
【问题讨论】: