Answers for "how to copy list item to another list in java"

0

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);
Posted by: Guest on June-24-2020
0

how to copy list item to another list in java

List<Integer> copy = new ArrayList<>();
copy.addAll(list);
Posted by: Guest on June-24-2020

Code answers related to "how to copy list item to another list in java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language