String--int互转
Posted ayeex
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了String--int互转相关的知识,希望对你有一定的参考价值。
A:int -->String
1.String s1 = "" + 100;
2.String s2 = String.valueof(100);
3.(int -- Integer -- String)
Integer i = new Integer(100);
String s3 = i.toString();
4.String s4 = Integer.toString(100);
B:String --> int
String s = "100";
1.(String -- Integer -- int)
Integer it = new Integer(s);
int i1 = it.intValue();
2.int i2 = Integer.parseInt(s);
以上是关于String--int互转的主要内容,如果未能解决你的问题,请参考以下文章