本帖最后由 曾振华 于 2013-10-10 14:30 编辑
interface Inter
{
void method();
}
class Test
{
static Inter function()
{
return new Inter()
{
public void method()
{
System.out.println("method run");
}
};
}
}
class InnerTest
{
public static void main(String[] args)
{
Test.function().method();
}
}
Test调用一个静态函数function的对象的方法(method),中间的一段代码
return new Inter()
{
public void method()
{
System.out.println("method run");
}
};
最后为什么要加个分号(;)?
如果代表是一个对象,一般都表示为 new Inter(); 既然后面有接大括号,为什么还要加个 ; ? |