import java.util.Hashtable;
public class HashTable {
public static void main (String[] args)
{
Hashtable<String,Object> ht=new Hashtable<String,Object>();
ht.put("xiao wang", 30);
ht.put("zhang san", "aaa");
ht.put("he hai", true); System.out.println(ht.size());
ht.remove("zhang san");
System.out.println(ht.size()); System.out.println(ht.get("he hai"));
ht.put("he hai", "hello");
System.out.println(ht.get("he hai"));
}
}
相关文章
- 08-24【转载】scons基础用法介绍举例
- 08-24python的dir、help、str用法
- 08-24【转载】枚举类的常见用法
- 08-24【C++小知识】#define、enum、const的含义与用法
- 08-24C语言——枚举类型用法
- 08-24git archive用法
- 08-24浅谈vue中provide和inject 用法
- 08-24Vue中provide和inject 用法
- 08-24浅谈vue中provide和inject 用法
- 08-24std::async基本用法