码迷,mamicode.com
首页 > 其他好文 > 详细

基本类型转string类型的方法

时间:2019-12-20 21:02:52      阅读:87      评论:0      收藏:0      [点我收藏+]

标签:string   nbsp   class   tostring   str   lan   obj   integer   valueof   

1:基本类型的值直接+“  ”;

2:包装类的静态方法的tostring(参数)方法,不是object的tostring方法

  public String toString()

3:string类的静态方法valueOf(参数)。

        //将基本类型转换为string类型
        int num=666;
        String s=num+"";
        System.out.println(s+100);

        String s1=Integer.toString(100);
        System.out.println(s1);

        String s3 = String.valueOf(num);
        System.out.println(s3);

        //将string类型转换为基本类型
        //将string类型转换为int类型
        String s4="999";
        int num1 = Integer.parseInt(s4);
        System.out.println("基本类型:"+s4);

基本类型转string类型的方法

标签:string   nbsp   class   tostring   str   lan   obj   integer   valueof   

原文地址:https://www.cnblogs.com/BatmanY/p/12074695.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!