码迷,mamicode.com
首页 > 移动开发 > 详细

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

时间:2015-08-04 00:15:06      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:

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 转成字串的方法大同小异.

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

标签:

原文地址:http://www.cnblogs.com/qtfan/p/4700578.html

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