- interface Inter
- {
- void method();
- }
- class Test
- {
- //补足代码,通过匿名内部类。
- public static void fuction()
- {
- new Inter(){
- public void method()
- {
- System.out.println("匿名内部类");
- }
- }.method();
- }
- }
- class InnerClassTest
- {
- public static void main(String[] args)
- {
- Test.fuction();//主要要看懂这句话哈。
- }
- }
复制代码 |