数据类型的转换
程序员文章站
2024-03-18 21:15:46
...
int类型转换为String
例:
public class Test{
public static void main(String[] args) {
int i = 5;
//方法1: 使用String类的静态方法valueOf()
String str = String.valueOf(i);
//方法2: 先把基本类型装箱为对象,然后调用对象的toString()
Integer it = i;
String str2 = it.toString();
//字符串转换为int类型
String str =
"123"
;
int
i= Integer.parseInt(str);
}
}
上一篇: function