Static import gives direct benefit of not using the class name and access the static fields directly like
import static java. Lang. System;
will allow us to use out.println
directly instead of System.out.println
. Does the loading of such classes like the ones I define manually be different from loading of non static import of same classes?