If any class which is not in same package, we need to import it. If we import that class we can directly access static variables and methods with the class name.
Lets understand with the help of example
Without using static import :
1 2 3 4 5 6 7 8 9 10 11 12 |
package org.arpit.java2blog; public class StaticImportMain { public static void main(String[] args) { System.out.println("With Static import"); System.out.println("Value of PI : "+Math.PI); } } |
With using static import :
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
package org.arpit.java2blog; import static java.lang.System.out; import static java.lang.Math.PI; public class StaticImportMain { public static void main(String[] args) { out.println("With Static import"); out.println("Value of PI : "+PI); } } |
As you can see, we have directly used out.println and PI without using class name because we have used static import here.
Advantages: