interface Inter
{
void method();
}
class Test
{
static class Inner implements Inter
{
public void method()
{
System.out.println("method run");
}
static Inter function()
{
return new Inner();
}
}
}
class InnerClassTest
{
public static void main(string[] arge)
{
Test.function().method(); // 这句代码,我没理解,毕老师的视频也看了几遍,还是有点糊涂。求解释。
}
}
|