You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
411 B

/**
* 设备基础接口
* 所有智能家电的基本接口
*/
public interface Device {
/**
* 获取设备名称
* @return 设备名称
*/
String getName();
/**
* 打开设备
*/
void turnOn();
/**
* 关闭设备
*/
void turnOff();
/**
* 检查设备是否开启
* @return 是否已开启
*/
boolean isOn();
}