谁能帮我解释一下这个代码的意思啊
interface Inter
{
void method();
}
class Test
{
static Inter function()
{
return new Inter()
{
public void method()
{
System.out.println("adsfadfadf");
}
} ;
}
}
class Noname5
{
public static void main(String[] args)
{
Test.function().method();
}
}
|
|