java集合类之------Properties

时间:2022-09-25 21:41:11

之前经常看到有人在网上问关于HashMap 和Hashtable 的区别,自己也在看,时间一长发现自己也忘了二者的区别,于是在实际应用中犯错了。

原因是使用了Properties 这个集合类时将null放到value上,于是抛出了NullPointerException ,于是想起了Hashtable ,这个集合的键值就是不允许为空的,经过测试果然如此,又看了下Properties 的源代码,原来它extends Hashtable ,这就难怪了。接着又看了put 方法如下:

     public synchronized V put(K key, V value) {
// Make sure the value is not null
if (value == null) {
throw new NullPointerException();
} // Makes sure the key is not already in the hashtable.
Entry tab[] = table;
int hash = key.hashCode();
int index = (hash & 0x7FFFFFFF) % tab.length;
for (Entry<K, V> e = tab[index]; e != null; e = e.next) {
if ((e.hash == hash) && e.key.equals(key)) {
V old = e.value;
e.value = value;
return old;
}
} modCount++;
if (count >= threshold) {
// Rehash the table if the threshold is exceeded
rehash(); tab = table;
index = (hash & 0x7FFFFFFF) % tab.length;
} // Creates the new entry.
Entry<K, V> e = tab[index];
tab[index] = new Entry<K, V>(hash, key, value, e);
count++;
return null;
}

这就不难看出,当value为null时直接就抛出NullPointerException ,若key为null时,null.hashCode()也会抛出NullPointerException 。所以决定了Properties 的键值不能为null 。同时注意这个类也是synchronized的,这样就可以保证在多线程共享时使用这个专用于存储属性文件的集合不会出现问题。

经过这次的错误想起来老师以前经常告诉我们要坚持看java的API ,哪怕你每天看一个类的,有时间多看,没时间少看。终于明白了老师的心思,当然常用的很有必要看,磨刀不误砍柴工吗。掌握了基本的方法,写代码快了,也不容易出错了,更不用因为没有现成的方法而去baidu、google了,何乐而不为呢