int string类型互转
Posted 蓝色枫梦
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了int string类型互转相关的知识,希望对你有一定的参考价值。
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类型互转的主要内容,如果未能解决你的问题,请参考以下文章
类型转换(CCstring int string char UTF-8互转)