for(int i=0; i<jianGe.size(); i++){
if(i==0){
//计算现值
jxz.setXianZhi((Integer) jianGe.get(i));
}else{
//计算极值
if(i<=(jianGe.size()-1)){
if((Integer)jianGe.get(i)>(Integer)jianGe.get(i+1)){
max = (Integer)jianGe.get(i);
}
}
}
}
上面那段代码在if((Integer)jianGe.get(i)>(Integer)jianGe.get(i+1))这里有数组越界,请问是怎么回事?怎么解决?
|
|