主函数里面的代码是什么意思?调用的方法不是抽象的吗?
interface Inter
{
void inter();
}
class Test
{
public static Inter function()
{
return new Inter()
{
public void inter()
{
System.out.println("匿名内部类练习");
}
};
}
}
class NiMingTest
{
public static void main(String[] args)
{
Test.function().inter();
}
} |
|