static class 썸네일형 리스트형 [JAVA] import static import static 은 JDK 5 부터 추가된 import 이다!import static 은 static 한 변수(클래스 변수)와 static 메소드를 사용하고자 할 때 용이하다. import static 을 사용하지 않고 static 변수에 접근하거나 메소드를 사용하는 경우에는 import [패키지명].[클래스명]; [클래스명].[static 변수];[클래스명].[static 메소드](); 와 같이 사용해야한다.하지만 import static 을 사용하는 경우에는 import static [패키지명].[클래스명].*;// 또는 // import static [패키지명].[클래스명].[변수명];// import static [패키지명].[클래스명].[메소드명]; [static 변수];[static .. 더보기 이전 1 다음