How to convert int[] into List in Java?

后端 未结 20 2336
萌比男神i
萌比男神i 2020-11-22 06:18

How do I convert int[] into List in Java?

Of course, I\'m interested in any other answer than doing it in a loop, item by it

20条回答
  •  自闭症患者
    2020-11-22 06:31

    The smallest piece of code would be:

    public List myWork(int[] array) {
        return Arrays.asList(ArrayUtils.toObject(array));
    }
    

    where ArrayUtils comes from commons-lang :)

提交回复
热议问题