jdk1.5新特性1之静态导入


调用Math类的静态方法,每次都要写Math点方法。

public static void main(String args)
{
 system.out.print(Math.max(3,6));
 system.out.print(Math.min(3.6));
}

 


JDK1.5支持静态导入

import static java.lang.Math.max;

public static void main(String args)
{
 system.out.print(max(3,6));
}

当然这样导入就更可以了import static java.lang.Math.*;

 

上一篇:在 NAS SMB 卷上用 Visual Studio 调试 ASP.NET + SQLServer 项目并部署到 IIS 服务


下一篇:在NAS SMB卷上使用VisualSVN Server维护代码库