标签:split uri 功能 名称 style 哈希 手册 world hello
参考老师给的《码出高效_阿里巴巴Java开发手册》
开发手册链接:https://github.com/chjw8016/alibaba-java-style-guide
String[] splitString;
String[] splitString;
class InfectStatistic
public int getIp()
{
return ip;
}
MAX_STOCK_COUNT
class Province{
String name=null;//省份名称(拼音)
int ip=0;//感染患者
int sp=0;//疑似患者
int cure=0;//治愈
int dead=0;//死亡
public Province(String name) {
this.name=name;
this.ip=0;
this.sp=0;
this.cure=0;
this.dead=0;
}
public int getIp() {
return ip;
}
public int getSp() {
return sp;
}
}
//统计全国数据
public void Sum(Hashtable<String,Province> hashtable) {
Province nation = new Province("全国");
Set set = hashtable.keySet();
Iterator iterator = set.iterator();
//遍历哈希表
while(iterator.hasNext()) {
Object keys = iterator.next();
nation.ip += hashtable.get(keys).getIp();
nation.sp += hashtable.get(keys).getSp();
nation.cure += hashtable.get(keys).getCure();
nation.dead += hashtable.get(keys).getDead();
}
hashtable.put("全国",nation);//将全国放入哈希表
}
String s=s.substring(0,s.length()-1);
标签:split uri 功能 名称 style 哈希 手册 world hello
原文地址:https://www.cnblogs.com/linlin123/p/12496346.html