修改另一个类的ArrayList对象值

时间:2016-01-28 17:42:16

标签: java arraylist processing boids

我有两个类:包含ArrayList boids的类Creature和类Food。 Boids有一些参数:

 Creature(float posX, float posY, int t, int bth, int ah) {
    location = new PVector(posX, posY);
    vel = new PVector(random(-5,5), random(-5, 5));
    acc = new PVector();
    type = t;
    if (t == 1) { btype = bth; }
    else { health = bth; }
    if (t == 1) { age = ah; }
    else { hunger = ah; }
    wdelta = 0.0;
    action = 0;
    if (btype == 1) { mass = 5.0; }
    else { mass = 7.0; }
  }

食品类有这种方法:

  void foodtime(ArrayList boids) {
    for (int i = 0; i < boids.size(); i++) {
      Creature boid = (Creature) boids.get(i);
      float distance = PVector.dist(location, boid.location);
      if (distance < 0.5) {
        bnumadj = i;
        count++;
        if (count == quantity) {
          planet.food.remove(this);
          count = 0;
          bnumadj = -1;
        }
      }
    }
  }

我想要实现的是,如果一个boid“吃”食物,它们的boid类型(btype)从2变为1.

我正在尝试使用bnumadj变量将其反馈给此方法中的boid:

  void boid(ArrayList boids) {
    for (int i = 0; i < boids.size(); i++) {
      if (i == bnumadj) {
        this.btype = 1;
        bnumadj = -1;
      }
    }
  }

我哪里错了?

1 个答案:

答案 0 :(得分:1)

这似乎是一种非常令人费解的方式,所以我并不感到惊讶你有问题。您正在将值与索引进行比较,这对我来说并没有多大意义。

相反,尝试使用简单的嵌套循环来执行您想要的操作。您可以使用Iterator在迭代时更轻松地删除项目。

ArrayList<Creature> boids = new ArrayList<Creature>();
ArrayList<Food> food = new ArrayList<Food>();
//populate ArrayLists

void draw(){

   for(Creature boid : boids){
      Iterator<Food> foodIter = food.iterator();

      while(foodIter.hasNext()){
         Food f = foodIter.next();
         float distance = PVector.dist(boid.location, food.location);
         if (distance < 0.5) {
            boid.btype = 1;
            foodIter.remove(); //removes the food
        }
      }

   }

   //draw the scene
}

我想您可以使用Iterator类型中的Creature来移动第二次迭代,但基本思路是:通过使用Iterator删除{{}来保持简单1}}而不是尝试匹配索引。