package com.shujia.day10.bao8;
//要求在控制台输出”HelloWorld”
interface Inter {
void show();
}
//class InterImpl implements Inter{
// @Override
// public void show() {
// System.out.println("HelloWorld");
// }
//}
class Outer {
//补齐代码
public static Inter method(){
return new Inter() {
@Override
public void show() {
System.out.println("HelloWorld");
}
};
}
}
public class OuterDemo {
public static void main(String[] args) {
//我们从调用的方式可以得到一个结论,发现method这个方法是可以被Outer类直接调用的,说明method类是静态的
//method方法没有参数
//调用method方法之后紧跟着可以接着调用show()方法
//说明method方法调用完后返回的应该是一个对象,而且是一个实现了Inter接口类的对象,method方法的返回值类型是Inter类型
Outer.method().show();
}
}