HashTable集合

java.util.HashTable<K, V>集合 implements Map<K, V>接口

HashTable:底层也是一个哈希表,是一个线程安全的集合,是单线程集合,速度慢
HashMap:底层也是一个哈下表,是一个线程不安全的集合,是多线程的集合,速度快

HashMap集合:可以存储null值,null键
HashTable集合:不能存储null值,null键

HashTable和Vector集合一样,在JDK1.2版本之后被更先进的集合(HashMap,ArrayLis)取代了
HashTable的子类Properties依然活跃在历史舞台
Properties集合是一个唯一和IO流相结合的集合
实例说明:

public class Demo02HashTable {
	public static void main(String[] args) {
		HashMap<String, String> map = new HashMap<>();
		map.put(null, "a");
		map.put("b", null);
		map.put(null, null);
		System.out.println(map);// {null=null, b=null}
		
		Hashtable<String, String> table = new Hashtable<>();
		table.put(null, null);//NullPointerException
		table.put("a", null);//NullPointerException
		table.put(null, "c");//NullPointerException
		System.out.println(table);
	}
}

你可能感兴趣的:(Java)