JDK1.5新特性

import java.util.ArrayList;
import static java.lang.Math.random;

/**
* JDK1.5的新特性
* @author zhaoguoli
* @version v1.0 2009-07-02 晚1点 create
*/
public class TestJDK5New {

public int sum(int... n) { //传过来n为一个int型数组
int tempSum = 0;
for(int option : n) {
tempSum+=option;
}
return tempSum;

}

public enum MyColors {
red,
black,
blue,
green,
yellow
}
/**
* @param args
*/
public static void main(String[] args) {
// 自动装箱与拆箱
Integer i = 10;
System.out.println(i);
int j = i;
System.out.println(j);

//更优化的for循环
String[] names = {"BadBoy","GoodBoy","HappyGirl","sadGirl"};
for(String option: names) {
System.out.println(option);
}
/*
* for + 加泛型
*/
ArrayList<String> animals = new ArrayList<String>();
animals.add("Dog");
animals.add("Cat");
animals.add("Chick");
animals.add("Cow");
for(String option : animals) {
System.out.println(option);
}

//参数可变的方法 相当于传递了不固定的参数
TestJDK5New testJDK5New = new TestJDK5New();
System.out.println(testJDK5New.sum(1,2));
System.out.println(testJDK5New.sum(1,2,3));
System.out.println(testJDK5New.sum(1,2,3,4));
System.out.println(testJDK5New.sum(1,2,3,4,5));
// printf方法, 对应c语言的printf  
int x = 10;
int y = 20;
int sum = x + y;
System.out.printf("%d + %d = %d",x,y,sum);

System.out.println("");
//枚举
MyColors color = MyColors.red;
for(MyColors option : MyColors.values()) {
System.out.println(option);
}
System.out.println(color);

// 静态引用
double xxx = random();
System.out.println(xxx);


}

}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值