jdk1.5免费下载-jdk(Java SE Development Kit 8)下载 v1.5.0 官方正式版-绿色软件之家

jdk1.5免费下载 最新更新|软件分类|软件专题|手机版|论坛转贴|软件发布

您当前所在位置: 首页编程开发编程软件 → jdk(Java SE Development Kit 8) v1.5.0 官方正式版

jdk(Java SE Development Kit 8)

v1.5.0 官方正式版

jdk(Java SE Development Kit 8)下载
  • 软件大小:43.40 MB
  • 软件语言:中文
  • 软件类型:国产软件 / 编程软件
  • 软件授权: 免费软件
  • 更新时间:2017-03-31 10:22:27
  • 软件等级:4星
  • 软件厂商: -
  • 应用平台:WinAll, WinXP
  • 软件官网:

ITMOP本地下载文件大小:43.40 MB

点赞 好评 0%(0) 差评 差评 0%(0)

软件介绍人气软件精品推荐相关文章网友评论下载地址

小编为您推荐: jdk

JDK1.5.0是一款非常好用的java编程软件,java的开发都需要用到JDK,今天给大家带的是JDK的1.5.0版本,这个版本虽然比较老,但是实用性依旧很高,有需要的朋友IT绿色下载吧~

JDK1.5.0的主要新特征

自动实现装箱和解箱操作(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

8Building 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();

10Covariant 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

更多>> 软件截图

推荐应用

其他版本下载

    精品推荐 java jdk

    java
    更多 (76个) >> java java专题为用户提供java运行环境下载,java各个版本的安装包都可以免费下载,不管是jav开发,还是java编程,亦或是安装一些需要java运行环境支持的软件,都需要先安装jre或者jdk安装包,这里就可以找到你想要的什么是JavaJava是一门面向对象编程语言,不仅吸收了
    jdk
    更多 (27个) >> jdk jdk是面向开发者使用的,Java开发员必装的软件,这里为您提供Java jdk下载合集,最新的是jdk1.9,不过目前使用较广泛的还是jdk 1.8 64位和32位免费下载,还有jdk1.7、jdk1.6各个平台的安装程序,支持win、mac、linux系统,满足您的各种开发需

    相关文章

    下载地址

    • jdk(Java SE Development Kit 8) v1.5.0 官方正式版

    查看所有评论>> 网友评论

    发表评论

    (您的评论需要经过审核才能显示) 网友粉丝QQ群号:374962675

    查看所有 0条 评论>>

    更多>> 猜你喜欢