Hashtable的用法(初学Java时的困扰,闲了就写出来了)

Hashtable基本概述

Hashtable-哈希表类

以哈希表的形式存储数据,数据的形式是键值对。
特点:
查找速度快,遍历相对慢,键值不能有空指针和重复数据。

创建
Hashtable<Integer,String> ht = new Hashtable<Integer,String>();
添值
ht.put(1,"Andy");
ht.put(2,"Bill");
ht.put(3,"Cindy");
ht.put(4,"Dell");
ht.put(5,"Felex");
ht.put(6,"Edinburg");
ht.put(7,"Green");
取值
String str=ht.get(1);
System.out.println(str);
//执行结果为Andy
对键进行遍历
Iterator it = ht.keySet().iterator();

while(it.hasNext()){
  Integer key = (Integer)it.next();
  System.out.println(key);
}
对值进行遍历
Iterator it = ht.values().iterator();
while(it.hasNext()){
  String value=(String)it.next();
  System.out.println(value);
}

取Hashtable记录数
Hashtable<Integer,String> ht=new Hashtable<Integer,String>();

ht.put(1,"Andy");
ht.put(2,"Bill");
ht.put(3,"Cindy");
ht.put(4,"Dell");
ht.put(5,"Felex");
ht.put(6,"Edinburg");
ht.put(7,"Green");

int i=ht.size();
//执行结果为7
删除元素
Hashtable<Integer,String> ht=new Hashtable<Integer,String>();

ht.put(1,"Andy");
ht.put(2,"Bill");
ht.put(3,"Cindy");
ht.put(4,"Dell");
ht.put(5,"Felex");
ht.put(6,"Edinburg");
ht.put(7,"Green");

ht.remove(1);
ht.remove(2);
ht.remove(3);
ht.remove(4);

System.out.println(ht.size());
//执行结果为3

Iterator it = ht.values().iterator();

while(it.hasNext()){
   String value=(String)it.next();
   System.out.println(value);
}
输出:
3
Green
Edinburg
Felex

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 2
    评论
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值