java integer string_int-Integer-String之间的转换方式

1.int和Integer之间的转换:

1) int----->Integer

①自动装箱

②Integer的构造方法

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

代码如下:

int a = 10;

Integer i1 = a; //①

Integer i2 = new Integer(a);  //②

Integer i3 = Integer.valueOf(a);   //③

2) Integer------>int

①自动拆箱

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

示例代码:

Integer a = new Integer(10);

int i1 = a;   //①

int i2 = a.intValue();   //②

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();   //①

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

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

2) String---->Integer

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

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

示例代码:

String str = "123";

Integer i = Integer.valueOf(str);  //①

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 +""; //①

String s3 = Integer.toString(a);  //②

String s2 = String.valueOf(a);   //③

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);  //①

int m2 = Integer.valueOf(str);   //②--->自动拆箱

int m3 = Integer.valueOf(str).intValue();  //②--->手动拆箱

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值