HashMap的使用方法

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 staff = new HashMap();
		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 entry : staff.entrySet()) {
			String key = entry.getKey();
			Employee value = entry.getValue();
			System.out.println("key=" + key + ", value=" + value + "");
		}
		
		//取得map中所有的key
		Set keys = staff.keySet();
		for(String key : keys) {
			System.out.println(key);
		}
		
		//取得map中所有的value
		Collection 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;
}

你可能感兴趣的:(java,hashmap,string,class)