本帖最后由 詹继强 于 2013-12-15 19:37 编辑
interface Inner
{
void method();
}
class Test
{
static Inter function()
{
return new Inter()
{
public void method()
{
System.out.println("method run");
}
};
}
}
class InnerClssTest
{
public static void main(String[] args)
{
Test.function().method();
}
}
这样写为什么会提示编译失败呢?请各位帮小弟解惑! |