标签:技术 src 方法区 style eof ima 相互转换 integer int
String:
下面三条语句分别创建了几个对象:
String s1=new String("abc");// 2 堆中一个,方法区一个 String s2="abc";// 0 String s3=new String("abc");// 1 堆中一个 String s4="he"+"ll"+"o";// 创建五个对象
//将String转换为int String s0="12"; int i0=Integer.parseInt(s0); //将int转换为String String s1=1+""; //第一种 String s2=String.valueOf(1); //第二种
int Integer String 三者之间相互转换
标签:技术 src 方法区 style eof ima 相互转换 integer int
原文地址:https://www.cnblogs.com/xin-zhizhu/p/13197567.html