徐杨 发表于 2011-11-18 23:41
interface A {
内容....
}
我在视频day10-6里看到好多都是省略{}的。- interface Inter
- {
- void show( int a, int b );
- void func();
- }
- class Demo
- {
- public static void main(String[] args)
- {
- //补足代码:调用两个函数,要求用匿名内部类
- Inter in = new Inter()
- {
- public void show( int a, int b ) //此处为什么用public
- {
- }
- public void func()
- {
- }
- };
- in.show(4,5);
- in.func();
- }
- }
复制代码 还有此处匿名内部类的方法,为什么一定要定义为public |