美文网首页
List<String>转为List<Integer>(Java

List<String>转为List<Integer>(Java

作者: wyn_做自己 | 来源:发表于2022-05-26 11:24 被阅读0次

今日份鸡汤:每一个平淡的日子都值得尊重,每一个还在身边的人都应该珍惜,愿你眼里有星辰,身边有微风,心中有暖阳~

这个比较简单,直接上代码:

    public static void main(String[] args) {
        String[] a = new String[]{"1", "2", "3"};
        List<String> strList = Arrays.asList(a);

        List<Integer> integerList = strList.stream().map(Integer::parseInt).collect(Collectors.toList());
        integerList.forEach(System.out::println);

    }

相关文章

网友评论

      本文标题:List<String>转为List<Integer>(Java

      本文链接:https://www.haomeiwen.com/subject/alyuprtx.html