概述
for (int j = 0; j < pidList.length; j++) {
// 存入map当中
for (int i = 0; i < stationhour.size(); i++) {
if (pidList[j].equals(stationhour.get(i).getPtid())) {
pollValueMap = new TreeMap<String, String>();
pollValueMap.put("monitordate", stationhour.get(i)
.getDatatime() + "");
pollValueMap.put("stationCode", stationhour.get(i)
.getPtid() + "");
pollValueMap.put("so2_1h", stationhour.get(i)
.getValue_4402() + "");
pollValueMap.put("no2_1h", stationhour.get(i)
.getValue_4467() + "");
pollValueMap.put("pm10_1h", stationhour.get(i)
.getValue_4486() + "");
pollValueMap.put("co_1h", stationhour.get(i)
.getValue_4404() + "");
pollValueMap.put("o3_1h", stationhour.get(i)
.getValue_4471() + "");
// pollValueMap.put("o3_m1",
// stationhour.get(i).getValue_()+"");
pollValueMap.put("pm25_1h", stationhour.get(i)
.getValue_4468() + "");
String dateKey = DateTimeUtils.handle(stationhour
.get(i).getDatatime())
+ "@"
+ stationhour.get(i).getPtid();
hourMap.put(dateKey, pollValueMap);
pollValueMap = null;
} else {
continue;
}
}
}
循环嵌套判断字符串是否相等
先循环获取判断条件,在循环获取基础条件,if判断字符串是否相等 [A.equals(B)] 注意循环顺序 判断条件
最后
以上就是欣喜火为你收集整理的循环嵌套判断字符串是否相等的全部内容,希望文章能够帮你解决循环嵌套判断字符串是否相等所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复