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);
	}
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值