本帖最后由 黄兴旺 于 2013-8-24 19:59 编辑
interface Inter
{
public void method();
}
class Test
{
static class Inner implements Inter
{
public void method()
{
System.out.println("mwgg");
}
}
static Inter function()//这一句为什么是静态的啊 function函数的运算结果是一个对象返回给Inter,为什么function是静态的
{
return new Inner();
}
}
class InterDemo
{
public static void main(String[] args)
{
Test.function().method();
}
}
|