首先
我们先在for循环外定义一个
int totalScore = 0;//比如总分数
然后开始for循环
for(String id:ids){
int num = service.findcount();//比如此处获取到一个数字,然后要把这个数字给加到totalScore里
totalScore += num;//这就是加入了
totalScore -= num;//这就是减去
}
最后就能获取到最终的totalScore。
首先
我们先在for循环外定义一个
int totalScore = 0;//比如总分数
然后开始for循环
for(String id:ids){
int num = service.findcount();//比如此处获取到一个数字,然后要把这个数字给加到totalScore里
totalScore += num;//这就是加入了
totalScore -= num;//这就是减去
}
最后就能获取到最终的totalScore。