java1.5以后新增的特性_jdk1.5之后的一些新特性
oreach與數(shù)組
加強(qiáng)的for循環(huán)(Enhanced forLoop)
for(type element : array) {
System.out.println(element)....
}
int[] arr = {1, 2, 3, 4, 5};
for(int element : arr)
System.out.println(element);
泛型(Generics)
? ? ? ? ? J2SE5.0之后,針對泛型(Generics)設(shè)計的解決方案
? ? ? ? ? 使用用來宣告一個型態(tài)持有者名稱T
public class GenericFoo{
privateTfoo;
public void setFoo(Tfoo) {
this.foo = foo;
}
publicTgetFoo() {
return foo;
}
}
GenericFoofoo1 = new GenericFoo();
GenericFoofoo2 = new GenericFoo();
foo1.setFoo(new Boolean(true));
Boolean b = foo1.getFoo(); //不需要再轉(zhuǎn)換型態(tài)
System.out.println(b);
foo2.setFoo(new Integer(10));
Integer i = foo2.getFoo(); //不需要再轉(zhuǎn)換型態(tài)
System.out.println(i);
自動裝箱
Integer integer = 10;
總結(jié)
以上是生活随笔為你收集整理的java1.5以后新增的特性_jdk1.5之后的一些新特性的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: iexplore.exe是什么?iexp
- 下一篇: Rundll32.exe是什么?Rund