- package inerExam;
- interface Inter
- {
- void show();
- }
- class Outer
- {
- public static Inter method()
- {
- return new Inter() {
-
- @Override
- public void show() {
- // TODO 自动生成的方法存根
- System.out.println("show");
- }
- };
- }
- }
- public class InnerDemo
- {
- public static void main(String[] args)
- {
- Outer.method().show();
- }
- }
复制代码 |