通过匿名内部类的方式。
static Inter method()
{return new Inter(){
void show()
{System.out.println("hello world");
}};
第二种方式:
static class Inner implements Inter
{ void show()
{System.out.println("hello world");
}
}
static Inter method()
{return new Inner();
}
} |
|