java中的常量池
java为很多基本类型的包装类/字符串都建立常量池
常量池:相同的值只储存一份,节省内存,共享访问
基本类型的包装类
Boolean,Byte,Short,Integer,Long,Character,Float,Double
常量池范围
Boolean:true false
Byte,Character:\u000–\u007f(0-127)
Short,Int,Long:-128~127
Float,Double:没有缓存(常量池)
基本类型的包装类和字符串有两种创建方式
常量式(字面量)赋值创建,放在栈内存(将被常量化)
Integer a = 10
String b = “abc”
new对象进行创建,放在堆内存(不会被常量化)
Integer c = new Integer(10)
String b = new String(“abc”)
例:
public class IntegerTest {
public static void main(String[] args) {
Integer n1 = 127;
Integer n2 = 127;
System.out.println(n1 == n2);
Integer n3 = 128;
Integer n4 = 128;
System.out.println(n3 == n4);
Integer n5 = new Integer(127);
System.out.println(n1 == n5);
}
}
在这里第一个输出为true,第二个和第三个为false
因为第一个的两个Integer类型的对象的创建方式为常量式(字面量)赋值创建且赋值范围在常量池范围中,内存共享,两对象指向同一对象。
第二个虽然创建方式为常量式(字面量)赋值创建,但赋值范围超出了Integer包装类的常量池范围,所以两对象未被常量化,指向的不是同一对象。
第三个的n5创建方式为new对象进行创建,放在堆内存,而n1为常量式(字面量)赋值创建放在栈内存中,指向的地址不同