首页 > 其他 > 详细

String和包装类型互相转换

时间:2020-09-09 20:35:59      阅读:72      评论:0      收藏:0      [点我收藏+]

1.String类型转换成包装类

     Double aDouble = Double.valueOf("12.66");//返回Double包装类型
        double aDouble1 = Double.parseDouble("12.66");//返回double基本数据类型

        Long aLong = Long.valueOf("123456");//返回Long包装类型
        long parseLong = Long.parseLong("123456");//返回long基本数据类型

        Integer integer = Integer.valueOf("123");///返回Integer包装类型
        int i = Integer.parseInt("123");//返回int基本数据类型

  

2.基本转换成String类型

        String s = Integer.toString(100);

        String s1 = Long.toString(10000);

        String s2 = Double.toString(26.66);

  

 

String和包装类型互相转换

原文:https://www.cnblogs.com/Amywangqing/p/13641146.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!