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

int string类型互转

时间:2016-03-16 14:10:33      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:

int -> String

int i=12345;
String s="";
第一种方法:s=i+"";
第二种方法:s=String.valueOf(i);
这两种方法有什么区别呢?作用是不是一样的呢?是不是在任何下都能互换呢?

String -> int

s="12345";
int i;
第一种方法:i=Integer.parseInt(s);
第二种方法:i=Integer.valueOf(s).intValue();

int string类型互转

标签:

原文地址:http://www.cnblogs.com/lansefengmeng/p/5283130.html

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