interface Inter
{
void method();
}
class Test
{
public static Inter function()
{
return new Inter()
{
public void method()
{
System.out.println("haha");
}
};
}
}
public static void main(String[] args)
{
Test.function().method();
}
在这个匿名类的练习中,有个问题不理解,我看了好多遍还是看不懂,求救。
Test.function():Test类中有个静态的方法function。这个我懂。
.method:function这个方法运行后的结果是一个对象,而且是个Inter的对象。
所以我的问题:返回值为为什么是Inter? |