黑马程序员技术交流社区

标题: 关于内部类的问题 [打印本页]

作者: yekong262    时间: 2014-2-26 13:01
标题: 关于内部类的问题
本帖最后由 yekong262 于 2014-2-26 15:48 编辑
  1. interface Inter
  2. {
  3.         void method();
  4. }
  5. class Test
  6. {
  7.          static class Inner implements Inter
  8.                 {
  9.                         public void method()
  10.                         {
  11.                                 System.out.println("Hello World!");
  12.                         }
  13.                 }

  14.         //补足代码通过匿名内部类、
  15.                /*返回值类型*/
  16.         static Inter function();//InterClassDemo1test.java:17: 错误: 缺少方法主体, 或声明抽象  这是怎么回事
  17.         {
  18.                 return new Inner();
  19.                 /*
  20.                 new Inter()
  21.                 {
  22.                         void method()
  23.                         {}
  24.                 }.method();*/
  25.         }
  26. }
  27. class InterClassDemo1test
  28. {
  29.         public static void main(String[] args)
  30.         {
  31.                 Test.function().method();
  32.                 //Test.function();               
  33.         }
  34. }
复制代码

作者: 无道    时间: 2014-2-26 14:05
static Inter function();//InterClassDemo1test.java:17: 错误: 缺少方法主体, 或声明抽象  这是怎么回事

多个分号   ;    把这个去掉就行了,
作者: yekong262    时间: 2014-2-26 15:03
谢谢~!~!我知道了 ~~~!




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2