入门客AI创业平台(我带你入门,你带我飞行)
博文笔记

HashMap的使用方法

创建时间:2012-05-07 投稿人: 浏览次数:23166
package list;

import java.util.Collection;
import java.util.HashMap;
import java.util.Map;
import java.util.Set;

public class MapTest {
	public static void main(String[] args) {
		Map<String, Employee> staff = new HashMap<String, Employee>();
		staff.put("144-25-5464", new Employee("Amy"));
		staff.put("567-24-2546", new Employee("Harry"));
		staff.put("157-62-7935", new Employee("Gray"));
		staff.put("456-62-5527", new Employee("France"));
		System.out.println(staff);
		
		staff.remove("567-24-2546");//删除
		System.out.println(staff);
		
		staff.put("456-62-5527", new Employee("Bob"));//替换
		System.out.println(staff);
		
		System.out.println(staff.get("157-62-7935"));//查询
		
		//取得map中所有的key和value
		for(Map.Entry<String, Employee> entry : staff.entrySet()) {
			String key = entry.getKey();
			Employee value = entry.getValue();
			System.out.println("key=" + key + ", value=" + value + "");
		}
		
		//取得map中所有的key
		Set<String> keys = staff.keySet();
		for(String key : keys) {
			System.out.println(key);
		}
		
		//取得map中所有的value
		Collection<Employee> values = staff.values();
		for(Employee value : values) {
			System.out.println(value);
		}
	}
}

class Employee {
	public Employee(String n) {
		name = n;
		salary = 0;
	}
	
	public String toString() {
		return "[name=" + name + ", salary=" + salary + "]";
	}
	
	private String name;
	private double salary;
}

声明:该文观点仅代表作者本人,入门客AI创业平台信息发布平台仅提供信息存储空间服务,如有疑问请联系rumenke@qq.com。
  • 上一篇:没有了
  • 下一篇:没有了
未上传头像