我正在查看IntegerCache
课程,但它有一个我无法理解的用法。最后一行有一个private
构造函数,但我不明白其目的。它做了什么?
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() {}
}
答案 0 :(得分:3)
这是一个空构造函数,也是private
,阻止了类的实例化。该类仅用于其静态属性,并且不能创建该类的实例。
答案 1 :(得分:3)
默认情况下,如果没有提供构造函数,Java编译器将插入一个空的public
构造函数。通过显式添加空private
构造函数
private IntegerCache() {}
编译器不会添加默认构造函数。另请参阅JLS-8.8.9. Default Constructor 和 JLS-8.8.10. Preventing Instantiation of a Class,其中(部分)
可以设计一个类,通过声明至少一个构造函数来防止类声明之外的代码创建类的实例,以防止创建默认构造函数,并将所有构造函数声明为
private
。
public
类同样可以通过声明至少一个构造函数来阻止在其包之外创建实例,以防止创建具有public
访问权限的默认构造函数,并且不声明任何公共构造函数。