假设我的程序中有以下哈希图设置。我想获取哈希图的输入并将它们存储到一个对象中。当前的 hashmap 列表太长而无法放入主代码中,因此我尝试从单独的目标文件中读取输入以限制主代码的长度。你会建议我怎么做?
谢谢!
int i = input.nextInt();
Map<Character,Integer> map = new HashMap<Character,Integer>();
map.put('A', i*2);
map.put('B', i*2);
map.put('C', i*2);
map.put('D', i*4);
map.put('E', i*2);
map.put('F', i*3);
map.put('G', i*2);
map.put('H', i*6);
and so on forth down to Z and other 20 other characters...