CoreJava/exp6/AdapterDemo.java

30 lines
590 B
Java
Raw Permalink Normal View History

2024-05-09 09:10:51 +08:00
package exp6;
interface InnerAnonymousInterface {
void fun1();
void fun2();
void fun3();
}
abstract class Outer implements InnerAnonymousInterface{
}
public class AdapterDemo {
public static void main(String[] args) {
Outer o = new Outer(){
public void fun1(){
System.out.println("方法1");
}
public void fun2(){
System.out.println("方法2");
}
public void fun3(){
System.out.println("方法3");
}
};
o.fun1();
}
}