Android中 int 和 String 互相转换的多种方法

Android中 int 和 String 互相转换的多种方法,第1张

Android中 int 和 String 互相转换的多种方法

1 如何将字串 String 转换成整数 int? 

A. 有两个方法:

1). int i = Integer.parseInt([String]); 或 
i = Integer.parseInt([String],[int radix]);

2). int i = Integer.valueOf(my_str).intValue(); 

注: 字串转成 Double, Float, Long 的方法大同小异

2 如何将整数 int 转换成字串 String ? 

A. 有叁种方法:

1.) String s = String.valueOf(i);

2.) String s = Integer.toString(i); 

3.) String s = "" + i; 

注: Double, Float, Long 转成字串的方法大同小异.

欢迎分享,转载请注明来源:内存溢出

原文地址: https://outofmemory.cn/zaji/5670195.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存