java之List~Integer 与List~Long 互相转换的方法分享

戚薇 Java经验 发布时间:2022-06-30 16:00:55 阅读数:2044 1
下文笔者讲述Integer和Long之间的list集合值互相转换的方法分享,如下所示
实现思路:
    借助com.alibaba.fastjson包下的JSONArray类实现
public static void main(String[] args) {
        List<Integer> listInt = new ArrayList<>();
        listInt.add(88);
        listInt.add(99);
        listInt.add(1000);
        List<Long> listLong = JSONArray.parseArray(listInt.toString(),Long.class);
        System.out.println(listLong);
} 
版权声明

本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。

本文链接: https://www.Java265.com/JavaJingYan/202206/16565772703844.html

最近发表

热门文章

好文推荐

Java265.com

https://www.java265.com

站长统计|粤ICP备14097017号-3

Powered By Java265.com信息维护小组

使用手机扫描二维码

关注我们看更多资讯

java爱好者