这里面包含了一百多个JAVA源文件

源代码在线查看: e347. creating a copy of a collection.txt

软件大小: 551 K
上传用户: maple_78
关键词: JAVA
下载地址: 免注册下载 普通下载 VIP

相关代码

				These examples create a shallow copy of a collection. That is, the new collection contains references to same objects as the source collection; the objects are not cloned. 
				    List stuff = Arrays.asList(new String[]{"a", "b"});
				    
				    // Make a copy of a list
				    List list = new ArrayList(stuff);
				    List list2 = new LinkedList(list);
				    
				    // Make a copy of a set
				    Set set = new HashSet(stuff);
				    Set set2 = new TreeSet(set);
				    
				    // Make a copy of a map
				    Map map = new HashMap();
				    // Add key/value pairs ...
				    Map map2 = new TreeMap(map);
				
							

相关资源