question_021-JAVA之Map之Hashtable???

JAVA之

Map之

Hashtable


-------------------------------------

HashMap和Hashtable区别:


1)Hashtable是同步的(线程安全,效率低),且不可使用null值作为键和值


2)HashMap是不同步的(线程不安全,效率高),且键和值都可以为null


初次之外,HashMap和Hashtable是没有区别的,HashMap用来替代Hashtable


-------------------------------------

package com.lyMapHashMap;


import java.util.HashMap;
import java.util.Hashtable;


/**
 * HashMap和Hashtable的区别:
 * HashMap:异步,高效,键和值都可以为null
 * Hashtable:同步,低效,键和值都不可以为null
 * @author Jack
 * 
 */
public class HashtableDemo {
public static void main(String[] args) {
// 使用HashMap可以存入null值
HashMap<String, String> hm = new HashMap<String, String>();
hm.put(null, "123");
hm.put("121", null);
hm.put("下", "xia");


System.out.println("hm: "+hm);
System.out.println("--------");


// 使用Hashtable不可以存入null值
Hashtable<String, String> ht = new Hashtable<String, String>();


ht.put(null, "123");   // 出现异常
ht.put("121", null);   // 出现异常
ht.put("下", "xia");
System.out.println("ht: "+ht);
System.out.println("--------");
}
}



----------------------------

hm: {null=123, 下=xia, 121=null}
--------
Exception in thread "main" java.lang.NullPointerException
at java.util.Hashtable.put(Hashtable.java:399)
at com.lyMapHashMap.HashtableDemo.main(HashtableDemo.java:30)

·····································




评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值