?? e347. creating a copy of a collection.txt
字號(hào):
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);
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -