gpt4 book ai didi

Java ArrayList 和对象问题。数值重置

转载 作者:行者123 更新时间:2023-12-02 07:30:00 25 4
gpt4 key购买 nike

我有 3 个类(class)和一个主类(class)。这些类别是城市、旅游和人口。一个人口有一个包含 X 个旅游的数组列表,而旅游有一个包含 X 个城市的数组列表。其中城市只是 X 和 Y 坐标。当我创建新的旅行时,其中的城市是随机的,然后我将旅行添加到人口数组列表中,这工作正常,输出是随机的。但是,如果我再次输出数组列表,它们将不再随机,并且所有游览都是相同的。我认为通过显示一些代码会更容易解释:

人口.java

public class Population {

private ArrayList<Tour> toursList;

public Population(int size, ArrayList<City> loadedCities)
{
toursList = new ArrayList<Tour>();

// Fill the population with the number of tours
for (int i = 0; i < size; i++) {
Tour newTour = new Tour(loadedCities);
newTour.setId(i);
toursList.add(newTour);
}

}

public void output()
{
for (Tour tour : toursList)
System.out.println(tour.toString());
}
}

Tour.java

public class Tour {

private ArrayList<City> tour;
private int id = 0;

public Tour(ArrayList<City> cities)
{
Collections.shuffle(cities);
tour = cities;
}

public void setId(int i)
{
this.id = i;
System.out.println("Constructor: "+toString());
}

public int getId()
{
return id;
}

public String toString()
{
String str = "Tour: "+id+" - ";
for (City city : tour) {
str += city.toString()+" | ";
}
return str;
}
}

City.java

public class City {

private int code;
private Double y;
private Double x;

public City(int code, Double y, Double x)
{
this.code = code;
this.y = y;
this.x = x;
}

public int getCode()
{
return code;
}

public Double getX()
{
return x;
}

public Double getY()
{
return y;
}

public String toString()
{
return "Code: "+this.code+" - X: "+this.x+" Y: "+this.y;
}
}

然后主类在加载城市数组列表后进行这些调用:

Population population = new Population(10, cities);
population.output();

几个 println 的控制台输出如下(精简版本):

Constructor: Tour: 0 - Code: 2 - X: 42373.8889 Y: 11108.6111
Constructor: Tour: 1 - Code: 28 - X: 43026.1111 Y: 11973.0556
Tour: 0 - Code: 8 - X: 42983.3333 Y: 11416.6667
Tour: 1 - Code: 8 - X: 42983.3333 Y: 11416.6667

您可以看到游览现在全部变得相同且顺序相同。

最佳答案

您使用相同的 ArrayList<City> cities对于所有旅行团。

Tour构造函数应该是这样的:

tour = new ArrayList<City>(cities);
Collections.shuffle(tour);

关于Java ArrayList 和对象问题。数值重置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13036191/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com