我正在尝试将 Double[] 的 Hashmap 值分配给 List,但它会引发错误:
“类型 List 中的方法 add(Double) 不适用于参数 (Double[])”
ArrayList<HashMap<String, Double[]>> arl = (ArrayList<HashMap<String, Double[]>>) pd.getArrayList();
List<Double> empid = new ArrayList<Double>();
Iterator itr = arl.iterator();
while (itr.hasNext()) {
HashMap<String, Double[]> map = (HashMap<String, Double[]>) itr.next();
empid.add(map.get("id")));
}
我怎样才能Double[]
投到Double.Request
?