JAVA中的练习

/*补全代码:
 * 在控制台输出"helloworld"
 * interface Inner{
 * 		void show() ;
 * }
 * 
 * class Outer{
 * 		
 *      //补全代码:	
 * }
 * class InnerClassTest3{
 * 		public static void main(String[] args){
 * 			Outer.method().show();
 * 		}
 * }
 * 
 * */
interface Inner8{
	void show() ;
}
class Outer8{
	public static Inner8 method() {
		return new Inner8() {
			public void show() {
				System.out.println("hello world");
			}
		};
	}
}
class InnerClassTest3{
	public static void main(String[] args) {
		Outer8.method().show();
//		Outer8.method():说明method方法是一个静态功能
//		Outer8.method().show():说明Outer8.method()这个方法是右一个返回值
		//返回值是一个接口对象.show();
	}
}

你可能感兴趣的:(笔记,java)