- interface Inter
- {
- void show();
- }
- class Outer
- {
- //补齐代码,完成主方法中定义的功能
- static class Inner implements Inter
- {
- public void show(){
- System.out.println("show run");
- }
- }
- static Inner method(){
- //这里代码怎么写,求教!!!
- }
- }
- class Test
- {
- public static void main(String[] args)
- {
- Outer.method().show();
- }
- }
复制代码
|
|