版权声明:原创作品,允许转载,转载时请务必以超链接形式标明文章原始出版、作者信息和本声明。否则将追究法律责任。 http://blog.csdn.net/topmvp - topmvp Java 5.0, code-named "Tiger", promises to be the most significant new version of Java since the introduct
FTP下载地址(复制以下地址用迅雷下载更快!!!): ftp://ftp1.macosx.com.cn:99/system/MacOSX10.4Tiger.iso BT种子文件下载: ftp://ftp1.macosx.com.cn:99/BT/macdownload.com.cn-macosx104.torrent Mac OS X 10.4中文版正式版Tiger DVD启动版 运行
写一个支持泛型的类,真的很简单,呵呵,看代码 [quote] public class Generic<E> { [color=red] //private static List<E> staticList = new ArrayList<E>(); 不能这样写,编译出错,因为静态变量的实例共享的。[/color] protected List<E> list; public
方法的参数化...看代码 1->方法参数 [quote] List list = new ArrayList(); list.add("Hello"); list.add("World"); setList(list); public static void setList[color=blue](List<String> list[/color]) { [color
泛型<Generic>之类型安全<Type-Safe> 1->List(collection,数组...类似) 在构造对像的时候就可以知道该对象操作的是什么样的数据<对象>类型,类型安全且省去烦人的转换类型。 通过Object<E> = new Object<E>();来实现,E占位符 [quote] //Tiger之前 List list = new ArrayList(