java 数组元素如何循环求和
floatd[]=null;//定义一个空数组floatfmax=0;//定义一个消费最大值intlen=0;//为消费数据的个数try{rs=RecordStore.o...
float d[] = null;//定义一个空数组
float fmax =0;//定义一个消费最大值
int len = 0;//为消费数据的个数
try {
rs=RecordStore.openRecordStore("record", true);
len=rs.getNumRecords();
d=new float[len];
RecordEnumeration re=rs.enumerateRecords(null, null, false);
int Index=len-1;
byte[] date;
while(re.hasNextElement()){
try{
date=re.nextRecord();
ByteArrayInputStream bais = new ByteArrayInputStream(date);
DataInputStream is = new DataInputStream(bais);
taste16 cd=new taste16();
cd.date=new Date();
cd.date.setTime(is.readLong());
cd.mu=is.readFloat();
d[Index]=cd.mu;
Index -=1;
if(cd.mu>fmax){
fmax=cd.mu;
}
is.close();
bais.close();
}catch(IOException e){
e.printStackTrace();
}
}
rs.closeRecordStore();
re.destroy();
} catch (RecordStoreFullException e) {
e.printStackTrace();
} catch (RecordStoreNotFoundException e) {
e.printStackTrace();
} catch (RecordStoreException e) {
e.printStackTrace();
}
上面为读取的数组,该使用什么方法求读取数组中元素的和 展开
float fmax =0;//定义一个消费最大值
int len = 0;//为消费数据的个数
try {
rs=RecordStore.openRecordStore("record", true);
len=rs.getNumRecords();
d=new float[len];
RecordEnumeration re=rs.enumerateRecords(null, null, false);
int Index=len-1;
byte[] date;
while(re.hasNextElement()){
try{
date=re.nextRecord();
ByteArrayInputStream bais = new ByteArrayInputStream(date);
DataInputStream is = new DataInputStream(bais);
taste16 cd=new taste16();
cd.date=new Date();
cd.date.setTime(is.readLong());
cd.mu=is.readFloat();
d[Index]=cd.mu;
Index -=1;
if(cd.mu>fmax){
fmax=cd.mu;
}
is.close();
bais.close();
}catch(IOException e){
e.printStackTrace();
}
}
rs.closeRecordStore();
re.destroy();
} catch (RecordStoreFullException e) {
e.printStackTrace();
} catch (RecordStoreNotFoundException e) {
e.printStackTrace();
} catch (RecordStoreException e) {
e.printStackTrace();
}
上面为读取的数组,该使用什么方法求读取数组中元素的和 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询