我有这个程序,它做了一大堆东西,但我遇到问题的部分是对数组列表中的奇数索引求和。
每 1、3、5、7 等。我需要求和并添加到一个变量。该变量是数据类型BigFraction
,而ArrayList-knowledge 仅采用 BigFractions。
所以最初我有
//Returns the combined probability (the odd indexes of the arraylist)
public BigFraction weight() {
BigFraction sum;
if (knowledge.indexOf(knowledge)%2 == 1)
sum+ = no idea what to put in here
return sum;
}
}
我真的不确定这是否是获取 Arraylist 索引的正确语法......我想你也可以使用 .add 或其他东西,但如果有人能阐明这将是很棒的。
干杯,
辛