首页 > 学院 > 开发设计 > 正文

J2SE 5.0新特性之static import

2019-11-18 14:50:46
字体:
来源:转载
供稿:网友

    在J2SE 5.0版本中,java语言引入了很多新的特性,本文将主要介绍static import。static import主要解决的问题是方便开发人员创建和使用全局的常量以及静态的方法。要使用这一新的特性您应该首先从java.sun.com下载最新的j2sdk 5.0。

    在《effective java》中作者曾经谈到在接口中定义常量是很糟糕的一种使用方法,我们应该始终使用接口来定义类型。但是在实际开发工作中还是有很多人这样使用接口,他们这样做的原因是这样定义常量使用起来很方便。例如如下定义方式:
   public interface BadIrrationalConstants {
     public static final double SQRT_TWO = 1.414;
     public static final double SQRT_THREE = 1.732;
   }

 public interface BadTranscendentalConstants {
     public static final double PI = 3.14159;
     public static final double E = 2.71828;
   }
假如你想在自己的类中使用这些接口中定义的常量的时候,那么你必须要实现这些接口。比如
 public class BadUSEOfConstants implements
     BadTranscendentalConstants, BadIrrationalConstants {

    public static double sinPiOverFour() {
       return SQRT_TWO / 2;
     }

     public static void main(String[] args) {
       System.out.PRintln("Pi is approximately " + PI);
       System.out.println("The sin of Pi/4 is about " +
         sinPiOverFour());
     }
   }
这样这些常量就变成你的类的一部分了,假如这个类不是final的话,其它的类继续了这个类又使得它继续了这些常量,但是这也许不是用户需要的结果。

    针对这样的情况,我们可以这样做,那就是在一个类中定义这些常量,使用的时候可以通过ClassName.variableName来访问他们。例如
package staticEx;

   public class IrrationalConstants {
     public static final double SQRT_TWO = 1.414;
     public static final double SQRT_THREE = 1.732;
   }
package staticEx;

   public class TranscendentalConstants {
     public static final double PI = 3.14159;
     public static final double E = 2.71828;
   }
现在J2SE 5.0提供了静态导入的功能,你只需要在import要害字后面写一个static要害字就可以直接使用类中定义的常量了,例如
   import static staticEx.IrrationalConstants.SQRT_TWO;
   import static staticEx.IrrationalConstants.SQRT_THREE;
   import static staticEx.TranscendentalConstants.PI;
当然你也可以使用.*的格式,例如
import static staticEx.IrrationalConstants.*;的格式
  
package staticEx;

   import static staticEx.IrrationalConstants.SQRT_TWO;
   import static staticEx.IrrationalConstants.SQRT_THREE;
   import static staticEx.TranscendentalConstants.PI;

   public class ConstantsWithStaticImport {

     public static double sinPiOverFour() {
       return SQRT_TWO / 2;
     }

     public static void main(String[] args) {
       System.out.println("Pi is approximately " + PI);
       System.out.println("The sin of Pi/4 is about " +
         sinPiOverFour());
     }
   }
运行该程序会得到
   Pi is approximately 3.14159
   The sin of Pi/4 is about 0.707
在这里提醒大家一下,假如你过多的使用.*的样式,那么可能会给程序的可读性带来负面的影响。因为你很难看出这个变量在哪里定义的。



发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表