共计 256 个字符,预计需要花费 1 分钟才能阅读完成。
可以使用 Integer 类的 toString() 方法将 int 类型转化为 String 类型。示例如下:
int num = 10;
String strNum = Integer.toString(num);
System.out.println(strNum);
另外也可以使用 String 类的 valueOf() 方法将 int 类型转化为 String 类型。示例如下:
int num = 10;
String strNum = String.valueOf(num);
System.out.println(strNum);
丸趣 TV 网 – 提供最优质的资源集合!
正文完