Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVA

array to arraylist java

ArrayList<Integer> list = new ArrayList<>(OtherList);
//it will copy all elements from OtherList to this one
//time complexity - O(n)
Source by dzone.com #
 
PREVIOUS NEXT
Tagged: #array #arraylist #java
ADD COMMENT
Topic
Name
5+6 =