packages and imports
import static java.lang.System.out;
out.println("Hello static import!");import static <package>.ImportsExamples.SOME_CONSTANT;
String constant = SOME_CONSTANT;
// Instead of String constant = ImportsExamples.SOME_CONSTANT;import com.hanfak.Dog;import com.hanfak.*;com.hanfak.Dog.run(); com.hanfak.Dog dog = new com.hanfak.Dog();
Advantages
Last updated