深入浅出设计模式

源代码在线查看: light.java

软件大小: 199 K
上传用户: guozhongjiesg02
关键词: 设计模式
下载地址: 免注册下载 普通下载 VIP

相关代码

				package headfirst.command.party;								public class Light {					String location;					int level;									public Light(String location) {						this.location = location;					}									public void on() {						level = 100;						System.out.println("Light is on");					}									public void off() {						level = 0;						System.out.println("Light is off");					}									public void dim(int level) {						this.level = level;						if (level == 0) {							off();						}						else {							System.out.println("Light is dimmed to " + level + "%");						}					}									public int getLevel() {						return level;					}				}							

相关资源