本帖最后由 yekong262 于 2014-2-26 15:48 编辑
- interface Inter
- {
- void method();
- }
- class Test
- {
- static class Inner implements Inter
- {
- public void method()
- {
- System.out.println("Hello World!");
- }
- }
- //补足代码通过匿名内部类、
- /*返回值类型*/
- static Inter function();//InterClassDemo1test.java:17: 错误: 缺少方法主体, 或声明抽象 这是怎么回事
- {
- return new Inner();
- /*
- new Inter()
- {
- void method()
- {}
- }.method();*/
- }
- }
- class InterClassDemo1test
- {
- public static void main(String[] args)
- {
- Test.function().method();
- //Test.function();
- }
- }
复制代码 |