0

我在循环中添加,但返回值始终为0,我想不通。

如果我取消注释最后两行之一,它会正确返回手动值,并且课程的其余部分可以工作。ARRAYLIST_SIZE = 10。

public float averageBearing() {
    float sumBng = 0;
    for (int i = 0; i==ARRAYLIST_SIZE; i++) {
        Location l = locList.get(i);
        float tempBearing = l.getBearing();
        sumBng += tempBearing;
    }
    float finalBng = sumBng/ARRAYLIST_SIZE;
    //remove following lines  for real use
    //finalBng = (float) (Math.random()*360);
    //finalBng = (float) 105.0;
    return finalBng;
}

我有理由确定列表中的位置有方位,这是添加方法。我现在必须欺骗轴承,因为该位置只有在我们移动时才具有它,但我在我的固定办公桌前。

public void add(Location location) {
    if (locList == null) {
        locList = new ArrayList<Location>();
    }
    //test code to spoof bearing
    location.setBearing((float) 105.0);
    //use only locations with extra data
    if (location.hasBearing() && location.hasSpeed()) {
        locList.add(location);
        mostRecent = location;
        //ensure we have at most 10 recent locations
        //no reason to use stale data
        while (locList.size()>10) {
            locList.remove(0);
        }
    }
    ARRAYLIST_SIZE = locList.size();

}
4

3 回答 3

3

循环中的条件表达式正在测试相等性。第一次测试失败,因为 i 为零,ARRAYLIST_SIZE 为 10。将其更改为:

  for (int i = 0; i<ARRAYLIST_SIZE; i++) {
于 2013-05-11T20:53:37.903 回答
3

改变这个:

for (int i = 0; i==ARRAYLIST_SIZE; i++)

对此:

for (int i = 0; i<ARRAYLIST_SIZE; i++)
于 2013-05-11T20:54:38.730 回答
1

你永远不会进入 for 循环,因为

i==ARRAYLIST_SIZE

它应该是

i<ARRAYLIST_SIZE
于 2013-05-11T20:54:41.780 回答