코딩이 편해질 수 있는 지름길 = 디버거 bug =우리가 짠 코드의 의도하지 않은 것 debugging = 버그를 잡는 것 멈추고 싶을 때 더블 클릭 = 브레이크 포인터 벌레 모양 디버거를 누르면 디버거 = 한 줄씩 코드 실행 가능 / 실행되는 순간에 어플리케이션 내의 변수 상태를 살펴볼 수 있는 기능을 제공 import javax.swing.JOptionPane; import org.opentutorials.iot.DimmingLights; import org.opentutorials.iot.Elevator; import org.opentutorials.iot.Lighting; import org.opentutorials.iot.Security; public class OkJavaGoInHomeInpu..