1.例题- interface Inter{
- void method();
- }
- class Test{
- 根据main 补足代码
- }
- public class WaibuDemo3{
- public static void main(String a[]){
- Test.function().method();
- }
- }
复制代码 ========================- interface Inter{
- void method();
- }
- class Test{
- static class Inner implements Inter{
- public void method(){
- System.out.println("method run");
- }
- }
- static Inter function(){
- return new Inner();
- }
- }
- public class WaibuDemo3{
- public static void main(String a[]){
- Test.function().method();
- }
- }
复制代码 匿名的做法明白了 static class Inner implements Inter{ 是什么用处 ? 眩晕 赐教 谢谢! |