ex10.java

来自「JAVA 编程思想 第四版 课后习题答案 代码全!」· Java 代码 · 共 29 行

JAVA
29
字号
// innerclasses/Ex10.java
// TIJ4 Chapter Innerclasses, Exercise 10, page 356
/* Repeat the previous exercise but define the inner class within a
* scope with scope within a method.
*/

interface Ex10Interface {
	void say(String s);
}

public class Ex10 {
	Ex10Interface f(boolean b) {
		if(b) {
			class Inner implements Ex10Interface {
				public void say(String s) {
					System.out.println(s);
				}
			}
			return new Inner();
		}
		return null;
	}
	public static void main(String[] args) {
		Ex10 x = new Ex10();
		x.f(true).say("hi");
	}
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?