HashMap构造时赋值

HashMap map = new HashMap() {
    {
        put("name", "test");  
        put("age", "20"); 
    }
};

你可能感兴趣的:(java,前端,服务器)