该toString()
方法将字符串表示形式赋予Long。假设我们有以下Long对象-
Long长Obj = new长(70); System.out.println("Long: " +长Obj);
要将其转换为字符串,使用该toString()
方法-
String myStr =长Obj.toString();
以下是完整的示例-
public class Demo { public static void main(String[] args) { //长 长长Obj = new长(70); System.out.println("Long: " +长Obj); //转换 String myStr =长Obj.toString(); System.out.println("Converted to String: " + myStr); } }
输出结果
Long: 70 Converted to String: 70