is it possible to change a massive of int into List

50

is it possible to change a massive of int into List -

int[] ints = {1, 2, 3};
List<Integer> intList = new ArrayList<Integer>(ints.length);
for (int i : ints)
{
    intList.add(i);
}

Comments

Submit
0 Comments