- 324 名前:デフォルトの名無しさん mailto:sage [2013/06/27(木) 03:15:37.97 ]
- The List Interface (The Java? Tutorials > Collections > Interfaces)
docs.oracle.com/javase/tutorial/collections/interfaces/list.html Here's a nondestructive form of this idiom, which produces a third List consisting of the second list appended to the first. List<Type> list3 = new ArrayList<Type>(list1); list3.addAll(list2);
|

|