本帖最后由 徐升兴 于 2012-10-17 21:05 编辑
interface Inter
{
void method();
}
class Test
{
//补足代码,通过匿名内部类
static Inter function()//这是一个静态的方法,为什么class Test不可以使用静态修饰。
{
return new Inter()
{
public void method()
{
System.out.println("hello,java");
}
};
}
}
class InnerClassTest
{
public static void main(String[] args)
{
Test.function().method();
}
}
|