此代码与字符串相反的是什么?
html
答案 0 :(得分:7)
String
与int
的反面将是int
到String
。
String strNumber = String.valueOf(number); //< fast and efficient.
或
String strNumber = "" + number; //< lazy and slow.
答案 1 :(得分:1)
将整数转换为字符串有不同的方法。其中很少列在下面。
方法1
String.valueOf(int_value);
方法2
Integer.toString(int_value);
方法3
int_value.toString;
答案 2 :(得分:0)
你可以这样做
int a=5;
String s = ""+a;
或
int a =5;
String s=Integer.toString(a);