在Java中,可以使用Integer.toString()
方法將整數(shù)轉(zhuǎn)換為字符串,示例如下:
int num = 123;
String str = Integer.toString(num);
System.out.println(str); // 輸出: "123"
另外,也可以直接使用字符串拼接的方式將整數(shù)轉(zhuǎn)換為字符串,示例如下:
int num = 123;
String str = "" + num;
System.out.println(str); // 輸出: "123"