light.java

来自「Head first design pattern这本经典书的 源码」· Java 代码 · 共 18 行

JAVA
18
字号
package headfirst.command.remote;public class Light {	String location = "";	public Light(String location) {		this.location = location;	}	public void on() {		System.out.println(location + " light is on");	}	public void off() {		System.out.println(location + " light is off");	}}

⌨️ 快捷键说明

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