class ImportTest {
java.util.Date today = new java.util.Date();
// ...
}
import java.util.Date;
class ImortTest {
Date today = new Date();
}
Ctrl + Shift + O
import 패키지명.클래스명;
import.패키지면.*;
: 모든 클래스*
은 모든 클래스를 의미하기 때문에 import java.*;
이렇게 쓰면 안된다.import static java.lang.Integer.*; // Integer 클래스의 모든 static 메서드
import static java.lang.Math.random; // Math.random()만. 괄호 안붙임.
import static java.lang.System.out; // System.out을 out만으로 참조 가능
System.out.println(Math.random());
-> out.println(random());
이렇게 작성 가능.