8种基本数据类型的8种包装类
byte Byte
short Short
int Integer
long Long
float Float
double Double
char Character
boolean Boolean
Integer a=127; Integer b=127;//虚拟机自动装箱时进行了特殊处理,-127~128以下的自动取有过的
System.out.println(a==b);结果为true
如果是Integer a=128; Integer b=128;
System.out.println(a==b);结果为false
System.out.println(a.equals(b)); 比较的都为内容,因复写过equals结果为true
原文地址:https://www.cnblogs.com/qingyundian/p/8470124.html
时间: 2024-10-07 12:16:53