有没有办法在不需要第二个变量的情况下增加地图中的值?
例如,这不起作用:
counts = new Map<string,integer>();
counts.put('month_total',0);
counts.put('month_total',counts.get['month_total']++);
它返回“字段表达式的初始术语必须是具体的SObject:MAP”
我需要这样做:
counts = new Map<string,integer>();
counts.put('month_total',0);
integer temp = 0;
temp++;
counts.put('month_total',temp);
有没有办法增加而不需要额外的变量?
答案 0 :(得分:5)
替换
counts.put('month_total',counts.get['month_total']++);
与
counts.put('month_total',counts.get('month_total')++);
答案 1 :(得分:0)
List<String> lststrings = new List<String>{'key','wewe','sdsd','key','dfdfd','wewe'};
Map<String,Integer> mapval = new Map<String,Integer>();
Integer count = 1;
for(string str : lststrings){
IF(mapval.containsKey(str)){
mapval.put(str,mapval.get(str)+1);
}
else{
mapval.put(str,count);
}
}
system.debug('value of mapval'+mapval);