转至繁体中文版     | 网站首页 | 图文教程 | 资源下载 | 站长博客 | 图片素材 | 武汉seo | 武汉网站优化 | 
最新公告:     敏韬网|教学资源学习资料永久免费分享站!  [mintao  2008年9月2日]        
您现在的位置: 学习笔记 >> 图文教程 >> 软件开发 >> JAVA开发 >> 正文
JDK5.0的11个主要新特征         ★★★★

JDK5.0的11个主要新特征

作者:闵涛 文章来源:闵涛的学习笔记 点击数:2052 更新时间:2009/4/22 23:33:14
nbsp;     int a;
       a = Varargs.add(1, 2, 3, 4, 5, 6, 7, 8, 9, 10);
       System.out.println(a);
}
4 自动实现装箱和解箱操作(Boxing/Unboxing Conversions)
  说明:实现了基本类型与外覆类之间的隐式转换。基本类型至外覆类的转换称为装箱,外覆类至基本类型的转换为解箱。这些类包括

Primitive Type     Reference Type
boolean           Boolean
byte              Byte
char              Character
short             Short
int               Integer
long              Long
float              Float
double            Double

  例如,旧的实现方式

Integer intObject;

int intPrimitive;
ArrayList arrayList = new ArrayList();
intPrimitive = 11;
intObject = new Integer(intPrimitive);
arrayList.put(intObject); // 不能放入int类型,只能使Integer
  新的实现方式

int intPrimitive;

ArrayList arrayList = new ArrayList();
intPrimitive = 11;
//在这里intPrimitive被自动的转换为Integer类型
arrayList.put(intPrimitive);
5 静态导入(Static Imports)
  很简单的东西,看一个例子:

  没有静态导入

Math.sqrt(Math.pow(x, 2) + Math.pow(y, 2));


  有了静态导入

import static java.lang.Math.*;

sqrt(pow(x, 2) + pow(y, 2));
   其中import static java.lang.Math.*;就是静态导入的语法,它的意思是导入Math类中的所有static方法和属性。这样我们在使用这些方法和属性时就不必写类名。

  需要注意的是默认包无法用静态导入,另外如果导入的类中有重复的方法和属性则需要写出类名,否则编译时无法通过。

6 枚举类(Enumeration Classes)
  用法:public enum Name {types, ….}

  简单的例子:

public enum Colors {Red, Yellow, Blue, Orange, Green, Purple, Brown, Black}

public static void main(String[] args){
    Colors myColor = Colors.Red;
    System.out.println(myColor);
}
  又一个简单例子:

import java.util.*;

enum OperatingSystems {windows, unix, linux, macintosh}
public class EnumExample1 {
    public static void main(String args[])  {
        OperatingSystems os;
        os = OperatingSystems.windows;
        switch(os) {
            case windows:
                System.out.println(“You chose Windows!”);
                break;
            case unix:
                System.out.println(“You chose Unix!”);
                break;
            case linux:
                System.out.println(“You chose Linux!”);
                break;
            case macintosh:
                System.out.println(“You chose Macintosh!”);
                break;
            default:
                System.out.println(“I don’t know your OS.”);
                break;
        }
    }
}
  应运enum简写的例子:

import java.util.*;

public class EnumTest
{
   public static void main(String[] args)
   {
      Scanner in = new Scanner(System.in);
      System.out.print("Enter a size: (SMALL, MEDIUM, LARGE, EXTRA_LARGE) ");
      String input = in.next().toUpperCase();
      Size size = Enum.valueOf(Size.class, input);
      System.out.println("size=" + size);
      System.out.println("abbreviation=" + size.getAbbreviation());
      if (size == Size.EXTRA_LARGE)
         System.out.println("Good job--you paid attention to the _.");
   }
}

enum Size
{
   SMALL("S"), MEDIUM("M"), LARGE("L"), EXTRA_LARGE("XL");

   private Size(String abbreviation) { this.abbreviation = abbreviation; }
   public String getAbbreviation() { return abbreviation; }
   private String abbreviation;
}
  enum类中拥有方法的一个例子:

enum ProgramFlags {

    showErrors(0x01),
    includeFileOutput(0x02),
    useAlternateProcessor(0x04);
    private int bit;
    ProgramFlags(int bitNumber) {
        bit = bitNumber;
    }
    public int getBitNumber()   {
        return(bit);
    }
}
public class EnumBitmapExample {
    public static void main(String args[])  {
        ProgramFlags flag = ProgramFlags.showErrors;
        System.out.println(“Flag selected is: “ +
        flag.ordinal() +
        “ which is “ +
        flag.name());
    }
}

7  元数据(Meta data)
  请参考

  http://www-900.ibm.com/developerWorks/cn/java/j-annotate1/

  http://www-900.ibm.com/developerworks/cn/java/j-annotate2.shtml

8 Building Strings(StringBuilder类)
   在JDK5.0中引入了StringBuilder类,该类的方法不是同步(synchronized)的,这使得它比StringBuffer更加轻量级和有效。

9 控制台输入(Console Input)
  在JDK5.0之前我们只能通过JOptionPane.showInputDialog进行输入,但在5.0中我们可以通过类Scanner在控制台进行输入操作

   例如在1.4中的输入

String input = JOptionPane.showInputDialog(prompt);

int n = Integer.parseInt(input);
double x = Double.parseDouble(input);
s = input;
  在5.0中我们可以

Scanner in = new Scanner(System.in);

System.out.print(prompt);
int n = in.nextInt();
double x = in.nextDouble();
String s = in.nextLine();
10      Covariant Return Types(不晓得怎么翻译,大概是 改变返回类型)
  JDK5之前我们覆盖一个方法时我们无法改变被方法的返回类型,但在JDK5中我们可以改变它

  例如1.4中我们只能

public Object clone() { ... }

...
Employee cloned = (Employee) e.clone();
  但是在5.0中我们可以改变返回类型为Employee

public Employee clone() { ... }

...
Employee cloned = e.clone();
11 格式化I/O(Formatted I/O)
  增加了类似C的格式化输入输出,简单的例子:

public class TestFormat{

    public static void main(String[] args){
        int a = 150000, b = 10;
        float c = 5.0101f, d = 3.14f;
        System.out.printf("%4d %4d%n", a, b);
        System.out.printf("%x %x%n", a, b);
        System.out.printf("%3.2f %1.1f%n", c, d);
        System.out.printf("%1.3e %1.3e%n", c, d*100);
    }
}
  输出结果为:

150000   10

249f0 a

5.01 3.1

5.010e+00 3.140e+02

  下面是一些格式化参数说明(摘自Core Java 2 Volume I - Fundamentals, Seventh Edition)

 

Table 3-5. Conversions for printf


Conversion Character
 Type
 Example
 
d
 Decimal integer
 159
 
x
 Hexadecimal integer
 9f
 
o
 Octal integer
 237
 
f
 Fixed-point floating-point
 15.9
 
e
 Exponential floating-point
 1.59E+01
 
g
 General floating-point (the shorter of e and f)
 
 
a
 Hexadecimal floating point
 0x1.fccdp3
 
s
 String
 Hello
 
c
 Character
 H
 
b
 Boolean
 TRUE
 
h
 Hash code
 42628b2
 
tx
 Date and time
 See Table 3-7
 
%
 The percent symbol
 %
 
n
 The platform-dependent line separator
 
 

Table 3-7. Date and Time Conversion Characters

Conversion Character
 Type
 Example
 
C
 Complete date and time
 Mon Feb 09 18:05:19 PST 2004
 
F
 ISO 8601 date
 2004-02-09
 
D
 U.S. formatted date (month/day/year)
 02/09/2004
 
T
 24-hour time
 18:05:19
 
r
 12-hour time
 06:05:19 pm
 
R
 24-hour tim

上一页  [1] [2] [3]  下一页


没有相关教程
教程录入:mintao    责任编辑:mintao 
  • 上一篇教程:

  • 下一篇教程:
  • 【字体: 】【发表评论】【加入收藏】【告诉好友】【打印此文】【关闭窗口
      注:本站部分文章源于互联网,版权归原作者所有!如有侵权,请原作者与本站联系,本站将立即删除! 本站文章除特别注明外均可转载,但需注明出处! [MinTao学以致用网]
      网友评论:(只显示最新10条。评论内容只代表网友观点,与本站立场无关!)

    同类栏目
    · C语言系列  · VB.NET程序
    · JAVA开发  · Delphi程序
    · 脚本语言
    更多内容
    热门推荐 更多内容
  • 没有教程
  • 赞助链接
    更多内容
    闵涛博文 更多关于武汉SEO的内容
    500 - 内部服务器错误。

    500 - 内部服务器错误。

    您查找的资源存在问题,因而无法显示。

    | 设为首页 |加入收藏 | 联系站长 | 友情链接 | 版权申明 | 广告服务
    MinTao学以致用网

    Copyright @ 2007-2012 敏韬网(敏而好学,文韬武略--MinTao.Net)(学习笔记) Inc All Rights Reserved.
    闵涛 投放广告、内容合作请Q我! E_mail:admin@mintao.net(欢迎提供学习资源)

    站长:MinTao ICP备案号:鄂ICP备11006601号-18

    闵涛站盟:医药大全-武穴网A打造BCD……
    咸宁网络警察报警平台