라이브러리를 사용해 만든 자바 프로그램 컴파일하기 라이브러리 : 프로그래밍에 사용되는 잘 정돈된 도구 (참조 : https://en.wikipedia.org/wiki/Library_(computing)) 내가 작성한 것이 아닌 외부에서 가져다 쓰는 클래스 등에 해당한다 .java로 된 라이브러리를 사용했다면 해당 라이브러리도 컴파일이 되어야 하기 때문에 프로그램과 라이브러리 모두 컴파일이 필요하다 예제) import org.opentutorials.iot.Elevator; // Library 1 import org.opentutorials.iot.Lighting; // Library 2 import org.opentutorials.iot.Security; // Library 3 public class O..