黑马程序员技术交流社区
标题:
关于内部类的问题
[打印本页]
作者:
yekong262
时间:
2014-2-26 13:01
标题:
关于内部类的问题
本帖最后由 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();
}
}
复制代码
作者:
无道
时间:
2014-2-26 14:05
static Inter function();//InterClassDemo1test.java:17: 错误: 缺少方法主体, 或声明抽象 这是怎么回事
多个分号 ; 把这个去掉就行了,
作者:
yekong262
时间:
2014-2-26 15:03
谢谢~!~!我知道了 ~~~!
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2