d
- public interface Inter {
- public void show();
- }
- public class Outer {
- public static Inter method(){
- return new Inter(){
- public void show(){
- System.out.println("HelloWorld");
- }
- };
- }
- }
- public class OuterDemo {
- /**
- * @param args
- */
- public static void main(String[] args) {
- // TODO Auto-generated method stub
- Outer.method().show();
- }
- }
复制代码
|
|