Answers for "how to cast int array to list in java"

C#
2

convert int array to integer list java

int[] arr = {1,2,3};
IntStream.of(arr).boxed().collect(Collectors.toList());
Posted by: Guest on May-22-2020
3

convert array to list java

/*
Get the Array to be converted.
Create the List by passing the Array as parameter in the constructor of the List with the help of Arrays. asList() method.
Return the formed List.
*/

String[] namedata = { "ram", "shyam", "balram" }; 

List<String> list = Arrays.asList(namedata);
Posted by: Guest on May-07-2020

Code answers related to "how to cast int array to list in java"

C# Answers by Framework

Browse Popular Code Answers by Language