Java的静态导入
静态导入作用是可以适当减少代码量,但实际上减少得很有限,实际应用中也用的不多,但是作为Java的特性,我们应该适当了解:
//静态导入方法或者常量 import static java.lang.System.out; import static java.lang.Math.PI; import static java.lang.Math.pow; public class StaticImp { public static void main(String[] args) { out.println("111111111111");//相当于System.out.println("111111111111") System.out.println(PI);//相当于Math.PI System.out.println(pow(2, 10));//Math.pow(2, 10) } }