import static java.lang.Math.*;
class Demo {
void show() {
System.out.println(sqrt(16)); // Math.sqrt() 생략 가능
}
}
- allows you to skip writing the class name
import static java.lang.Math.*;
class Demo {
void show() {
System.out.println(sqrt(16)); // Math.sqrt() 생략 가능
}
}