包装类源码分析
包装类
为啥需要包装类,为了把基本类型转换成对象,所以把基本类型作为一个类的属性保存起来
基本类型在栈中直接存储的具体数值,而包装类型则存储的是堆中的引用。Java 内置的包装类是无法被继承的。
包装类型
基本类型 | 包装类型 |
---|---|
byte | Byte |
short | Short |
int | Integer |
long | Long |
float | Float |
double | Double |
char | Character |
boolean | Boolean |
装箱拆箱
装箱就是将基本数据类型转换为包装器类型;拆箱就是将包装器类型转换为基本数据类型。
自动根据数值创建对应的 Integer对象,这就是自动装箱。
Integer i = new Integer(10);//装箱
Integer i = 10; //自动装箱
int n = i; //自动拆箱
new产生的Integer变量指向的是ava常量池中的对象,而new Integer()生成的变量指向堆中新建的对象,两者在内存中的地址不同。
源码分析
继承体系
与数字相关的包装类型都是如图和Integer一样的继承体系,继承了Number类,实现了Comparable接口,拥有可比较的能力,还间接的实现了Serializable接口,即是可序列化的。
Boolean 和Character的继承体系有一点不同,是Object的直接子类。
Integer源码分析
以Integer为例分析包装类源码
Integer属性
Integer的界限范围和int类型的界限范围一样,为-2^31 ~ 2^31-1。
@Native public static final int MIN_VALUE = 0x80000000;
@Native public static final int MAX_VALUE = 0x7fffffff;
final static char[] digits = {
'0' , '1' , '2' , '3' , '4' , '5' ,
'6' , '7' , '8' , '9' , 'a' , 'b' ,
'c' , 'd' , 'e' , 'f' , 'g' , 'h' ,
'i' , 'j' , 'k' , 'l' , 'm' , 'n' ,
'o' , 'p' , 'q' , 'r' , 's' , 't' ,
'u' , 'v' , 'w' , 'x' , 'y' , 'z'
};
//digits数组里面存的是数字从二进制到36进制所表示的字符。
final static char [] DigitTens = {
'0', '0', '0', '0', '0', '0', '0', '0', '0', '0',
'1', '1', '1', '1', '1', '1', '1', '1', '1', '1',
'2', '2', '2', '2', '2', '2', '2', '2', '2', '2',
'3', '3', '3', '3', '3', '3', '3', '3', '3', '3',
'4', '4', '4', '4', '4', '4', '4', '4', '4', '4',
'5', '5', '5', '5', '5', '5', '5', '5', '5', '5',
'6', '6', '6', '6', '6', '6', '6', '6', '6', '6',
'7', '7', '7', '7', '7', '7', '7', '7', '7', '7',
'8', '8', '8', '8', '8', '8', '8', '8', '8', '8',
'9', '9', '9', '9', '9', '9', '9', '9', '9', '9',
} ;
// DigitTens用于获取0到99之间某个数的十位
final static char [] DigitOnes = {
'0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
'0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
'0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
'0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
'0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
'0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
'0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
'0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
'0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
'0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
} ;
//DigitOnes是为了获取0到99之间某个数的个位
static int stringSize(int x) {
for (int i=0; ; i++)
if (x <= sizeTable[i])
return i+1;
}
//stringSize用于判断一个int型数字对应字符串的长度
parseInt
包装类提供将String型数据变为基本数据类型的方法
public static int parseInt(String s) throws NumberFormatException {
return parseInt(s,10);
}
//如果提供的String不是正确的数字,将抛出NumberFormatException异常
//parseInt可以将String型数据变为int类型
public static Integer valueOf(String s) throws NumberFormatException {
return Integer.valueOf(parseInt(s, 10));
}
//valueOf方法,这也是一种将String转换为int的方式
Intercache
private static class IntegerCache {
static final int low = -128;
static final int high;
static final Integer cache[];
static {
// high value may be configured by property
int h = 127;
String integerCacheHighPropValue =
sun.misc.VM.getSavedProperty("java.lang.Integer.IntegerCache.high");
if (integerCacheHighPropValue != null) {
try {
int i = parseInt(integerCacheHighPropValue);
i = Math.max(i, 127);
// Maximum array size is Integer.MAX_VALUE
h = Math.min(i, Integer.MAX_VALUE - (-low) -1);
} catch( NumberFormatException nfe) {
// If the property cannot be parsed into an int, ignore it.
}
}
high = h;
cache = new Integer[(high - low) + 1];
int j = low;
for(int k = 0; k < cache.length; k++)
cache[k] = new Integer(j++);
// range [-128, 127] must be interned (JLS7 5.1.7)
assert IntegerCache.high >= 127;
}
private IntegerCache() {}
}
IntegerCache存储了Integer范围为【-128,127】,默认实例化了256个对象。
valueOf
通过valueOf方法创建Integer对象的时候,如果数值在【-128,127】之间,便返回指向IntegerCache.cache中已经存在的对象的引用,否则创建一个新的Integer对象(自动装箱)。
public static Integer valueOf(int i) {
if (i >= IntegerCache.low && i <= IntegerCache.high)
return IntegerCache.cache[i + (-IntegerCache.low)];
return new Integer(i);
}
//valueOf用于自动装箱
- 通过查看源码可以发现,Integer、Short、Byte、Character、Long这几个类的valueOf方法的实现是类似的,如果在【-128,127】之间,cong cache中引用已经存在的对象,否则创建一个新的对象。
public static Double valueOf(double d) {
return new Double(d);
}
public static Float valueOf(float f) {
return new Float(f);
}
Double、Float的valueOf方法的实现是类似的,没有范围,直接创建一个新的Integer对象。
public static Boolean valueOf(boolean b) {
return (b ? TRUE : FALSE);
}
Boolean的valueOf方法如果原来是true就创建一个true的Blooean对象,否则创建一个false的Blooean对象。
几个例子
public class Main {
public static void main(String[] args) {
Integer i1 = 100;
Integer i2 = 100;
Integer i3 = 200;
Integer i4 = 200;
System.out.println(i1==i2);
System.out.println(i3==i4);
}
}
输出结果:
true
false
上面的代码中i1和i2的数值为100,因此会直接从cache中取已经存在的对象,所以i1和i2指向的是同一个对象,而i3和i4则是分别指向不同的对象,因为不在[-128,127]这个范围内,会创建新的Integer对象。
public class Main {
public static void main(String[] args) {
Double i1 = 100.0;
Double i2 = 100.0;
Double i3 = 200.0;
Double i4 = 200.0;
System.out.println(i1==i2);
System.out.println(i3==i4);
}
}
输出结果:
false
false
getChars
该方法主要做的事情是将某个int型数值放到char数组里面。
static void getChars(int i, int index, char[] buf) {
int q, r;
int charPos = index;
char sign = 0;
if (i < 0) {
sign = '-';
i = -i;
}
// Generate two digits per iteration
while (i >= 65536) {
q = i / 100;
// really: r = i - (q * 100);
r = i - ((q << 6) + (q << 5) + (q << 2));//i-q*100
i = q;
buf [--charPos] = DigitOnes[r];//用来获取个位
buf [--charPos] = DigitTens[r];//用来获取十位
}
// Fall thru to fast mode for smaller numbers
// assert(i <= 65536, i);
for (;;) {
q = (i * 52429) >>> (16+3); //约等于i/10
r = i - ((q << 3) + (q << 1)); // r = i-(q*10) ... //约等于q*10
buf [--charPos] = digits [r];
i = q;
if (i == 0) break;
}
if (sign != 0) {
buf [--charPos] = sign;
}
}
- int高位的两个字节和低位的两个字节分开处理。
- i >= 65536部分就是处理高位的两个字节,大于65536的部分使用了除法,一次生成两位十进制字符,每次处理2位数。
- 小于等于65536的部分为低位处理,尽量避免了除法,取而代之的是用乘法和右移来实现。
toString
//先用stringSize得到数字是多少位,再用getChars获取数字对应的char数组,最后返回一个String类型。
public static String toString(int i) {
if (i == Integer.MIN_VALUE)
return "-2147483648";
int size = (i < 0) ? stringSize(-i) + 1 : stringSize(i);
char[] buf = new char[size];
getChars(i, size, buf);
return new String(buf, true);
}
//调用第一个toString方法
public String toString() {
return toString(value);
}
//转换成对应进制的字符串。不在2到36进制范围之间的都会按照10进制处理。
public static String toString(int i, int radix) {
if (radix < Character.MIN_RADIX || radix > Character.MAX_RADIX)
radix = 10;
if (radix == 10) {
return toString(i);
}
char buf[] = new char[33];
boolean negative = (i < 0);
int charPos = 32;
if (!negative) {
i = -i;
}
while (i <= -radix) {
buf[charPos--] = digits[-(i % radix)];
i = i / radix;
}
buf[charPos] = digits[-i];
if (negative) {
buf[--charPos] = '-';
}
return new String(buf, charPos, (33 - charPos));
}
decode
对字符串进行解码。默认会处理成十进制,0开头的都会处理成8进制,0x和#开头的都会处理成十六进制。
public static Integer decode(String nm) throws NumberFormatException {
int radix = 10;
int index = 0;
boolean negative = false;
Integer result;
if (nm.isEmpty())
throw new NumberFormatException("Zero length string");
char firstChar = nm.charAt(0);
// Handle sign, if present
if (firstChar == '-') {
negative = true;
index++;
} else if (firstChar == '+')
index++;
// Handle radix specifier, if present
if (nm.startsWith("0x", index) || nm.startsWith("0X", index)) {
index += 2;
radix = 16;
}
else if (nm.startsWith("#", index)) {
index ++;
radix = 16;
}
else if (nm.startsWith("0", index) && nm.length() > 1 + index) {
index ++;
radix = 8;
}
if (nm.startsWith("-", index) || nm.startsWith("+", index))
throw new NumberFormatException("Sign character in wrong position");
try {
result = Integer.valueOf(nm.substring(index), radix);
result = negative ? Integer.valueOf(-result.intValue()) : result;
} catch (NumberFormatException e) {
// If number is Integer.MIN_VALUE, we'll end up here. The next line
// handles this case, and causes any genuine format error to be
// rethrown.
String constant = negative ? ("-" + nm.substring(index))
: nm.substring(index);
result = Integer.valueOf(constant, radix);
}
return result;
}
bitCount
返回指定int值的二进制表示形式中的1的个数。
public static int bitCount(int i) {
// HD, Figure 5-2
i = i - ((i >>> 1) & 0x55555555);
//0x55555555等于01010101010101010101010101010101
i = (i & 0x33333333) + ((i >>> 2) & 0x33333333);
//0x33333333等于110011001100110011001100110011
i = (i + (i >>> 4)) & 0x0f0f0f0f;
//0x0f0f0f0f等于1111000011110000111100001111
i = i + (i >>> 8);
i = i + (i >>> 16);
return i & 0x3f;
}
先每两位一组统计看有多少个1,比如10011111
则每两位有1、1、2、2个1,记为01011010
,然后再算每四位一组看有多少个1,而01011010
则每四位有2、4个1,记为00100100
, 接着每八位一组就为00000110
,接着16位,32位,最终在与0x3f
进行与运算,得到的数即为1的个数。
reverse方法
public static int reverse(int i) {
i = (i & 0x55555555) << 1 | (i >>> 1) & 0x55555555;
i = (i & 0x33333333) << 2 | (i >>> 2) & 0x33333333;
i = (i & 0x0f0f0f0f) << 4 | (i >>> 4) & 0x0f0f0f0f;
i = (i << 24) | ((i & 0xff00) << 8) |
((i >>> 8) & 0xff00) | (i >>> 24);
return i;
}
该方法即是将i进行反转,它的核心思想是先将相邻两位进行对换,比如10100111对换01011011,接着再将相邻四位进行对换,对换后为10101101,接着将相邻八位进行对换,最后把32位中中间的16位对换,然后最高8位再和最低8位对换。