本文涉及常量池、运行时常量池、字符串常量池、基本类型常量池详解,涉及重点包括:
字面量就是指由字母、数字构成的字符串或者数值常量,只可以右值出现,即等号右边的值
符号引用是编译原理中的概念,是相对于直接引用来说的,主要包含以下三类常量
int a =1;
int b = 2;
int c = "abcdefg";
int d = "abcdefg";
上面的a,b就是字段名称,就是一种符号引用,还有String类常量池里的java.lang.String是类的全限定名,
main是方法名称,()是一种UTF8格式的描述符,这些都是符号引用
这些常量池现在是静态信息,只有到运行时被加载到内存后,这些符号才有对应的内存地址信息,这些常量池一旦被装入内存就变成运行时常量池,对应的符号引用在程序加载(解析过程)中变为直接引用,或运行时会被转变变为被加载到内存区域的代码的直接引用(即动态链接)。
String s4 = "a" + "b" + "c";
String s5 = "abc";
System.out.println(s4 == s5); //true,静态拼接,JVM会自动优化
String s = "hello";
String s1 = new String("hello");
//s1创建两个对象,分别位于字符串常量池和堆中,字符串常量池中的对象本次不使用,堆中的对象仅供本次使用
String s2 = new String("he") + new String("llo");
String s3 = new String("he") + new String("llo");
System.out.println(s == s1); // false
System.out.println(s1 == s2); // false,涉及动态拼接,底层调用StringBuilder.append("he").append("llo").toString();
System.out.println(s2 == s3); // false,StringBuilder.append().toString()会new一个String对象
注意:StringBuilder拼接后的toString()方法不会将字符串存入常量池,只会在堆中创建新对象
适当地使用intern() 在正常实现功能的情况下,可以有效降低String对象产生量
public static void test() {
String s1 = new String("he") + new String("llo");
String s2 = s1.intern();
System.out.println(s1 == s2); // jdk1.7及以后true,jDK1.6及以前false
}
// StringBuilder拼接后的toString()方法不会将字符串存入常量池,所以上述JDK1.7为true,s1.intern()返回的仍是s1的引用地址
public static void test1() {
String s = "hello";
String s1 = new String("he") + new String("llo");
String s2 = s1.intern();
System.out.println(s1 == s2); // jdk1.7及以后false,jDK1.6及以前false
}
字符串常量池底层是hotspot的C++实现的,底层类似于一个HashTable,保存的本质上是字符串对象的引用,看一道常见的面试题
String s1 = new String("he") + new String("llo");
String s2 = s1.intern();
System.out.println(s1 == s2);
// 在 JDK 1.6 下输出是 false,创建了 6 个对象
// 在 JDK 1.7 及以上的版本输出是 true,创建了 5 个对象,原因详见上述intern分析
// 当然我们这里没有考虑GC,但这些对象确实存在
示例1:静态拼接,编译器可确定,均从常量池取值
String s0="hello";
String s1="hello";
String s2="he" + "llo";
System.out.println( s0==s1 ); //true
System.out.println( s0==s2 ); //true
示例2:涉及动态拼接,编译器无法确定
String s0="hello";
String s1=new String("hello");
String s2="he" + new String("llo");
System.out.println( s0==s1 ); // false
System.out.println( s0==s2 ); // false
System.out.println( s1==s2 ); // false
示例3:静态拼接,编译器可确定,均从常量池取值
String a = "a1";
String b = "a" + 1;
System.out.println(a == b); // true
String a = "atrue";
String b = "a" + "true";
System.out.println(a == b); // true
String a = "a3.4";
String b = "a" + 3.4;
System.out.println(a == b); //true
示例4:涉及变量,动态拼接,编译器无法优化,编译器无法确定
String a = "ab";
String bb = "b";
String b = "a" + bb;
System.out.println(a == b); //false
示例5:常量值拼接,编译器可确定
String a = "ab";
final String bb = "b";
String b = "a" + bb;
System.out.println(a ==b); //true
示例6:调用方法,编译器无法确定,只有程序运行期间调用方法后,将方法的返回值和"a"来动态链接并分配地址为b
String a = "ab";
final String bb = getBB();
String b = "a" + bb;
System.out.println(a == b); // false
private static String getBB()
{
return "b";
}
示例7:
//字符串常量池:"计算机"和"技术" 堆内存:str1引用的对象"计算机技术"
//堆内存中还有个StringBuilder的对象,但是会被gc回收,StringBuilder的toString方法会new String(),这个String才是真正返回的对象引用
String str2 = new StringBuilder("计算机").append("技术").toString(); //没有出现"计算机技术"字面量,所以不会在常量池里生成"计算机技术"对象
System.out.println(str2 == str2.intern()); //true
//"计算机技术" 在池中没有,但是在heap中存在,则intern时,会直接返回该heap中的引用
//字符串常量池:"ja"和"va" 堆内存:str1引用的对象"java"
//堆内存中还有个StringBuilder的对象,但是会被gc回收,StringBuilder的toString方法会new String(),这个String才是真正返回的对象引用
String str1 = new StringBuilder("ja").append("va").toString(); //没有出现"java"字面量,所以不会在常量池里生成"java"对象
System.out.println(str1 == str1.intern()); //false
//java是关键字,在JVM初始化的相关类里肯定早就放进字符串常量池了
String s1=new String("test");
System.out.println(s1==s1.intern()); //false
//"test"作为字面量,放入了池中,而new时s1指向的是heap中新生成的string对象,s1.intern()指向的是"test"字面量之前在池中生成的字符串对象
String s2=new StringBuilder("abc").toString();
System.out.println(s2==s2.intern()); //false
//同上
Java中的基本类型的包装类的大部分都实现了常量池技术(严格来说应该叫对象池,在堆上),这些类是Byte,Short,Integer,Long,Character,Boolean,另外两种浮点数类型的包装类则没有实现。另外Byte,Short,Integer,Long,Character这5种整型的包装类也只是在对应值小于等于127时才可使用对象池,也即对象不负责创建和管理大于127的这些类的对象。因为一般这种比较小的数用到的概率相对较。
public class Test {
public static void main(String[] args) {
//5种整形的包装类Byte,Short,Integer,Long,Character的对象,
//在值小于127时可以使用对象池
Integer i1 = 127; //这种调用底层实际是执行的Integer.valueOf(127),里面用到了IntegerCache对象池
Integer i2 = 127;
System.out.println(i1 == i2);//输出true
//值大于127时,不会从对象池中取对象
Integer i3 = 128;
Integer i4 = 128;
System.out.println(i3 == i4);//输出false
//用new关键词新生成对象不会使用对象池
Integer i5 = new Integer(127);
Integer i6 = new Integer(127);
System.out.println(i5 == i6);//输出false
//Boolean类也实现了对象池技术
Boolean bool1 = true;
Boolean bool2 = true;
System.out.println(bool1 == bool2);//输出true
//浮点类型的包装类没有实现对象池技术
Double d1 = 1.0;
Double d2 = 1.0;
System.out.println(d1 == d2);//输出false
}
}
public static Integer valueOf(int i) {
if (i >= IntegerCache.low && i <= IntegerCache.high)
return IntegerCache.cache[i + (-IntegerCache.low)];
return new Integer(i);
}
public class TestIntegerCache {
public static void main(String[] args) {
Integer i1 = 127;
Integer i2 = 127;
Integer i3 = new Integer(127);
Integer i4 = Integer.valueOf(127);
int i9 = 127;
System.out.println(i1 == i2); // true
System.out.println(i1 == i3); // false
System.out.println(i1 == i4); // true,Integer.valueOf会先从IntegerCache中取值,取不到再新建
System.out.println(i9 == i2); // true,int和Integer比较会自动拆箱
System.out.println(i9 == i3); // true
System.out.println(i9 == i4); // true
System.out.println(i3 == i4); // false
Integer i5 = 127;
Integer i6 = 127;
Integer i7 = new Integer(127);
Integer i8 = Integer.valueOf(127);
System.out.println(i5 == i6); // true
System.out.println(i5 == i7); // false
System.out.println(i5 == i8); // true
System.out.println(i7 == i8); // false
// Integer i5 = 127;走的是Integer.valueOf(127)),所以i5==i6为true,i5==i7为false
}
}