Map类

package com.hanqi;

import java.util.*;

public class test07 {

public static void main(String[] args) {
Map<String,String> Emp=new HashMap<String,String>();
Emp.put("005", "A");
Emp.put("004", "B");
Emp.put("003", "C");
Emp.put("002", "D");

Emp.remove("005");

}

}

posted @ 2016-03-12 08:28  lizhe313  阅读(94)  评论(0编辑  收藏  举报