A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

第一题interface Inter {
                        void show();
                }
                class Outer{
                        //请补足代码,要求用匿名内部类来体现。
                }
                class NiMingTest {
                        public static void main(String[] args) {
                                                  Outer.method().show();
                                }
                }
第二题class NiMingTest {
                public static void main(String[] args) {
                        //用匿名内部类补足代码
                }
                public static void function(Inter in){
                        in.show();
                }
        }
        interface Inter {
                void show();
        }匿名内部类可以以参数的形式传递
答:
题一 class Method implements Inter{ show(); } Method method = new Method();
题二 function (new Inner implements inter{show ()} )



1 个回复

倒序浏览
第一题代码
[Java] 纯文本查看 复制代码
interface Inter {
		void show();
}
class Outer{
	static Inter method(){
		return new Inter(){ public void show(){System.out.println("show1");} };
	}
}
class NiMingTest {
		public static void main(String[] args) {
								  Outer.method().show();
				}
}


第二题代码
[Java] 纯文本查看 复制代码
class NiMingTest {
                public static void main(String[] args) {
                        function(new Inter(){
							public void show(){
								System.out.println("show2");
							}
						});
                }
                public static void function(Inter in){
                        in.show();
                }
        }
        interface Inter {
                void show();
        }
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马