美文网首页
HashMapDemo

HashMapDemo

作者: 勇者与王者 | 来源:发表于2019-10-08 14:20 被阅读0次
package hashMap;

import java.util.HashMap;

/**
* 
* @author qz:
* @version 创建时间:2019年10月8日 下午2:13:06
* 
*/
public class HashMapDemo {

    public static void main(String[] args) {
        // TODO Auto-generated method stub

        HashMap<String,String> dict = new HashMap<>();
        dict.put("adc", "物理英雄");
        dict.put("apc", "魔法英雄");
        dict.put("tank", "坦克英雄");
        System.out.println(dict.get("tank"));
    }

}

相关文章

网友评论

      本文标题:HashMapDemo

      本文链接:https://www.haomeiwen.com/subject/odybpctx.html