怎么把List<int>和List<string>组成Dictionary<int,string>
1个回答
展开全部
Dictionary是个抽象类 你说的是他的子类Hashtable吧 他是键值对形式 故而你前面所说的两个list的长度应该相同
//怎么把List<int>和List<string>组成Dictionary<int,string>
List<Integer> integers=new ArrayList<Integer>();
integers.add(1);
integers.add(2);
integers.add(3);
integers.add(4);
List<String> strings=new ArrayList<String>();
strings.add("A");
strings.add("B");
strings.add("C");
strings.add("D");
Dictionary<Integer,String> hashTable=new Hashtable<Integer,String>();
for (int i = 0; i < integers.size(); i++) {
hashTable.put(integers.get(i), strings.get(i));
}
hashTable即为所得
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询