我有一个包含以下代码的脚本:
import java.io.IOException;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Random;
public class app {
public static int p;
public static int b=0;
public static int i;
public static int add;
public static List<Integer> a = new ArrayList<Integer>();
public static List<Node> c = new ArrayList<Node>();
public static void main(String[] args){
Random rand = new Random();
for( i = 0;i<=10;i++){
int random = getRandom();
if(random!=0){
a.add(random);
}else if(random == 0){
}
}
Collections.sort(a);
System.out.println(a);
for(int z = 1;z<a.size();z++){
Node n = new Node();
Node.pos=a.get(z);
System.out.println("Node pos set to "+a.get(z));
c.add(n);
System.out.println("Node at " + n.pos);
}
System.out.println("class array length " + c.size());
System.out.println("Node at index " + 0 +" has a pos of " + c.get(0).pos);
}
public static int getRandom(){
Random randd = new Random();
int randomnum = randd.nextInt(10);
if(!a.contains(randomnum)){
return randomnum;
}else if(a.contains(randomnum)){
}
return 0;
}
}
现在我想用此完成的是,我希望创建的节点n
被添加到一个数组中,该数组包含所有节点及其位置。但似乎一旦我创建了另一个节点,它之前的所有节点都将它们的pos改为那个节点。
例如,我可以尝试c.get(0).pos
,它将返回与9处的数字相同的数字,或者数组大小。如何使添加到数组中的每个节点保持其值?有什么问题?
答案 0 :(得分:5)
您在Node中的pos字段是静态的,我们可以看到,因为您在类而不是实例上访问它。使其成为非静态实例变量。即使它是一个非静态字段,你应该避免直接访问字段,而应该使用setter和getter方法。
例如,不要这样做:
Node n = new Node();
Node.pos=a.get(z); // a static access on the class
而是:
Node n = new Node();
n.setPos(a.get(z)); // a non-static setter method call on the instance