List <String> newList = new LinkedList<>(listOne); newList.addAll(listTwo);. Prefer to use a LinkedList for efficient add operations. ArrayList add is O(1) ...
確定! 回上一頁