这是map字段 ,在map初始化的时候 赋几个元素
public static final Map<String, String> DICT = new HashMap<String, String>(16) {
{
put("A","1001");
put("B","1002");
put("C","1003");
put("D","1004");
put("E","1005");
}
};
编译以后 在idea目录下只会显示一个 .class 文件
这是编译后的代码
public class test1 {
public static