https://www.youtube.com/watch?v=ejPBOti5omY&list=PLuHgQVnccGMAIluRRVsC1e79ri-dwnBmR&index=23
IOT 프로그래밍
.xxx() => 메소드
import org.opentutorials.iot.Elevator;
import org.opentutorials.iot.Security;
import org.opentutorials.iot.Lighting;
public class okJavagoinhome {
public static void main(String[] args) {
String id = "Java APT 111";
//Elevator call
Elevator myelevator = new Elevator (id);
myelevator.callForUp(1);
//Security off
Security mysecurity = new Security (id);
mysecurity.off();
//Light on
Lighting hallLamp = new Lighting (id+" / Hall Lamp");
hallLamp.on();
Lighting floorLamp = new Lighting (id + " / Floor Lamp");
floorLamp.on();
}
}
'Programming > 자바' 카테고리의 다른 글
생활코딩 자바 리뉴얼 10. 입출력 (0) | 2022.02.22 |
---|---|
생활코딩 자바 리뉴얼 9. 디버거 (0) | 2022.02.22 |
생활코딩 자바 리뉴얼 7. 변수 (0) | 2022.02.22 |
생활코딩 자바 리뉴얼 6. 데이터 (0) | 2022.02.21 |
생활코딩 자바 리뉴얼 5. 실습 영상으로 자바 파악하기 (0) | 2022.02.18 |