- 1、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
- 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 4、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 5、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 6、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 7、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
jdk1.4 1.5 1.6 1.7的区别(The difference between jdk1.4 1.5, 1.6, and 1.7)
jdk1.4 1.5 1.6 1.7的区别(The difference between jdk1.4 1.5, 1.6, and 1.7)
Simple said: 1.4 and 1.5 of the biggest difference is two, one is 1.5 generic, another 1.5 can encapsulate data type, automatic packaging eight basic data types: Integer, a = 4, the 1.4 is not possible. The difference between 1.5 and 1.6. 1.6 I think the most change, I think the biggest part is in the GUI above, provides many convenient layout management and expansion.
This period of time into an electronic government company, will use weblogic8, then well use jdk1.4 eclipse, a modified version of JDK, the previous projects are basically a piece of red.
The new characteristics of JDK1.5:
1. generic
2 automatic packing / unpacking
3 for-each
4 static import
The 5 variable length argument
1. generic (avoid casts may cause a runtime error)
For example:
ArrayList list=new (ArrayList);
List.add (New Integer (3));
List.add (New Integer (4));
Int i= ((Integer) (list.get (0))) (.ParseInt);
So much trouble
ArrayListIntegerlist=new (ArrayListInteger);
List.add (New Integer (3));
List.add (New Integer (4));
Int i=list.get (0) (.ParseInt);
2 automatic packing / unpacking
The above examples of the last sentence can be changed to:
Int i=list.get (0);
Because the original type and the corresponding wrapper class without explicit conversion
3 for-each
Circular enhancement
Int a[]={.....}; / / initialize...
For (int i:a)
{
......
}
No previous i=0; ia.length; i++
4 static import
Before Java.math
(Math.sqrt);
Now static import java.lang.Math.sqrt;
(sqrt);
Is this method in your class.
The 5 variable length argument
Int sum (int... Intlist)
{
Int sum;
Sum=0;
For (int i=0; iintlist.length; i++)
{
Sum+=intlist[i];
}
Return sum;
}
Any parameters, he was regarded as an array
The new features of JDK6.0.
Enhanced for loop
Notes
enumeration
Hidden static method
The variable parameter (Vararg)
Wildcards and covariant return
Enhanced for loop
In order to iterate collections and arrays, the enhanced for loop provides a simpl
您可能关注的文档
- 14 真题(14.).doc
- 14年国考申论真题(14 years of national test application on the exam).doc
- 14福师《教育统计与测量评价》在线作业一(14 Fu division education statistics and measurement evaluation online homework).doc
- 14福师《教育统计与测量评价》在线作业二(14 Fu division education statistics and measurement evaluation online homework two).doc
- 14秋《人际交往与沟通艺术》(14 Autumn Art of human communication and communication).doc
- 14种美味虾餐制作方法揭密--虾的做法大全(14 kinds of delicious shrimp meal production method -- inside shrimp practices Daquan).doc
- 15 并列连词(15 coordinate conjunctions).doc
- 15《古代诗歌四首》教案(15, ancient poetry four lesson plan).doc
- 15the little match girl 拇指姑娘(15the卖火柴的小女孩拇指姑娘).doc
- 15分钟有氧运动 丰胸又收腹(Aerobic exercise and breast abdomen for 15 minutes).doc
- jsp中cookie的用法(The use of cookie in JSP).doc
- js中json使用全解(JSON uses full solution in JS).doc
- jpslx_jy0401(jpslx_jy0401).doc
- js里的array,isfinite,number 总结(JS里的阵列,有限,数量总结).doc
- ka销售是什麼(What is Ka sale).doc
- js添加属性(JS add properties).doc
- kiss×kiss collections vol.11[杉田智和]—简(kiss×kiss vol.11 (杉田智和 简 collections]).doc
- kms报错(Kms reported error).doc
- ktv慢摇吧设计方案(KTV Manyao bar design).doc
- ky语法(KY syntax).doc
文档评论(0)