京東NLP線上實(shí)訓(xùn)營5期
1 方案1
Java8以上,利用Arrays.stream(arr).boxed()
將裝箱為Integer數(shù)組
List collect = Arrays.stream(arr).boxed().collect(Collectors.toList()); System.out.println(collect.size());System.out.println(collect.get(0).getClass());// 3// class java.lang.Integer
標(biāo)簽: