java 16 -12 静态导入


  静态导入:
    格式:import static 包名….类名.方法名;
    可以直接导入到方法的级别

  静态导入的注意事项:
    A:方法必须是静态的
    B:如果有多个同名的静态方法,容易不知道使用谁?这个时候要使用,必须加前缀。
      由此可见,意义不大,所以一般不用,但是要能看懂。

 1 import static java.lang.Math.abs;
 2 import static java.lang.Math.pow;
 3 import static java.lang.Math.max;
 4 
 5 //错误
 6 //import static java.util.ArrayList.add;
 7 
 8 public class StaticImportDemo {
 9 public static void main(String[] args) {
10 // System.out.println(java.lang.Math.abs(-100));
11 // System.out.println(java.lang.Math.pow(2, 3));
12 // System.out.println(java.lang.Math.max(20, 30));
13 // 太复杂,我们就引入到import
14 
15 // System.out.println(Math.abs(-100));
16 // System.out.println(Math.pow(2, 3));
17 // System.out.println(Math.max(20, 30));
18 // 太复杂,有更简单
19 
20 //    System.out.println(abs(-100));
21 System.out.println(java.lang.Math.abs(-100));
22 System.out.println(pow(2, 3));
23 System.out.println(max(20, 30));
24 }
25 
26 public static void abs(String s){
27 System.out.println(s);
28 }
29 }

 

posted @ 2016-09-22 23:08  卡拉瓦  阅读(133)  评论(0编辑  收藏  举报