interface Contents
{
void go();
}
public class Test1 {
public Contents con()
{
return new Contents()
{
public void go()
{
System.out.println("I got it");
}
};
}
public static void main(String [] args)
{
Test1 t = new Test1();
Contents c = t.con();
c.go();
}
代码中定义了一个接口在类Test1中并没有用关键字实现怎么可以创建接口对象并复写接口?
还在主函数中利用多态调用? |