java copy list without element code example
Example 1: java copy list
List<Object> copy = new ArrayList<>(original_list);
Example 2: how to copy list item to another list in java
List<Integer> source = Arrays.asList(1,2,3);
List<Integer> dest = Arrays.asList(4,5,6);
Collections.copy(dest, source);