String和int类型的相互转换 A:int -- String *a:和""进行拼接 *b:public static String valueOf(int i) * c:int --Integer -- String(Integer类的toString方法()) Integer i2 = new Integer(i); String s3 = i2.toString(); * d:publicstatic String toString(int i)(Integer类的静态方法) String s4 = Integer.toString(i); System.out.println(s1); B:String -- int * a:String-- Integer -- int String s = "200"; Integer i3 = new Integer(s); int i4 = i3.intValue(); *public static int parseInt(String s) String s = "200"; int i5 = Integer.parseInt(s);
|