---------------------- android培训、java培训、期待与您交流! ----------------------
interface Inter
{
void method();
}
class Demo
{
public static void main(String[] args)
{
show(new Inter() //直接在参数里定义一个匿名内部类,其实就是Inter接口的新创实例,创建时就重写
{
public void method()
{
System.out.println("metuuuhod");
}
}); //注意此处符号,}表示新建子类对象的内容结束,)表示参数调用结束,;表示函数调用结束。
}
public static void show(Inter m) //上面show的参数里创建的Inter型对象传进来
{
m.method();
}
}
-------------------- ASP.Net+Android+IOS开发、 .Net培训、期待与您交流! ----------------------