标签:value style sys pre str static print 调用 ring
方法一:使用String类的静态方法valueOf()
方法二:先把基本类型装箱为对象,然后调用对象的toString方法
1 public class TestNumber { 2 3 public static void main(String[] args) { 4 int i = 5; 5 6 //方法1 7 String str = String.valueOf(i); 8 9 //方法2 10 Integer it = i; 11 String str2 = it.toString(); 12 13 } 14 }
调用Integer的静态方法parseInt
1 public class TestNumber { 2 3 public static void main(String[] args) { 4 5 String str = "999"; 6 7 int i= Integer.parseInt(str); 8 9 System.out.println(i); 10 11 } 12 }
标签:value style sys pre str static print 调用 ring
原文地址:https://www.cnblogs.com/z-cg/p/12247183.html