package com.heima;
public class Test1_匿名内部类 {
/*
* 按照要求补齐代码
*/
public static void main(String[] args) {
Outer.method().show(); //链式编程,每次调用方法后,还能在继续调用,证明返回的是对象
}
}
interface Inter {
void show();
}
class Outer {
public static Inter method() {
return new Inter() {
public void show() {
System.out.println("helloworld");
}
};
}
} |
|