zoukankan      html  css  js  c++  java
  • 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 }
    何事都只需坚持.. 难? 维熟尔。 LZL的自学历程...只需坚持
  • 相关阅读:
    C# 批量图片合并工具(附源代码)
    C# 封装
    SQL语句基础
    c# My计算器源码
    炸酱面
    烧茄子
    Linux Desktop Entry 文件深入解析
    硬盘安装ubuntu
    使用C语言进行面向对象的开发--GObject入门[2]
    GObject对象系统 (1)
  • 原文地址:https://www.cnblogs.com/LZL-student/p/5898332.html
Copyright © 2011-2022 走看看