int-Integer-String之间的转换方式

1.int和Integer之间的转换:

      1) int----->Integer

               自动装箱

               Integer的构造方法

               ③调用Integer的静态方法:static Integer valueOf(int i):返回一个指定int值的Integer对象

         代码如下:

                          

                          int a = 10;
                          Integer i1 = a; //1
                          Integer i2 = new Integer(a);  //2
                          Integer i3 = Integer.valueOf(a);   //3

     2) Integer------>int            

              ①自动拆箱

             ②调用Integer的方法:int intValue():以int类型返回该Integer的值

        示例代码:                       

                        Integer a = new Integer(10);

                        int i1 = a;   //1
                        int i2 = a.intValue();   //2  

  

2.String和Integer之间的转换:

    1) Integer---->String

            ①调用Integer的方法:String toString():返回该Integer对象的字符串形式

            调用Integer的静态方法:static String toString(int i):返回一个指定整数的String对象

            ③调用String的静态方法:static String valueOf(Object obj):返回任意类型的字符串形式

        示例代码:                       

                        Integer a = new Integer(20);

                        String str1 = a.toString();   //1

                        String str2 = Integer.toString(a);  //2

                        String str3 = String.valueOf(a);   //3

    2) String---->Integer

            调用Integer的静态方法:static Integer valueOf(String s):返回指定的 String 的值的 Integer 对象。 

                 注意:这里的参数s必须是可以解析成整数的字符串,否则会报异常:NumberFormatException

         示例代码:

                      

                        String str = "123";
                        Integer i = Integer.valueOf(str);  //1

3.int和String之间的转换:

    1) int------>String

            字符串拼接,使用+

            调用Integer的静态方法:static String toString(int i):返回一个指定整数的String对象

            ③调用String的静态方法:static String valueOf(int i):返回指定int值的字符串形式

      示例代码:

                       

                       int a = 5;
                       String s1 = a +""; //1
                       String s3 = Integer.toString(a);  //2
                       String s2 = String.valueOf(a);   //3

    2) String----->int

        调用Integer的静态方法:static int parseInt(String s):将一个可以解析为整数的字符串解析为一个int值

          ②调用Integer的静态方法:static Integer valueOf(String s):返回指定的 String 的值的 Integer 对象。【自动拆箱】

      示例代码:

                    

                     String str = "123";
                     int m1 = Integer.parseInt(str);  //1
                     int m2 = Integer.valueOf(str);   //2--->自动拆箱
                     int m3 = Integer.valueOf(str).intValue();  //3--->手动拆箱

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值