gpt4 book ai didi

java - 无法为字段设置随机枚举

转载 作者:行者123 更新时间:2023-11-30 01:43:19 24 4
gpt4 key购买 nike

public class Player {

public String name;
public boolean active;
public boolean seeker;
public Location randLocation;

public Player(String name, boolean seeker) {
this.name = name;
this.seeker = seeker;
//this.active= true;
//this.randLocation=randLocation;
}

public String getName() {
return name;
}

public boolean isActive() {
return active;
}

public void setActive(boolean active) {
this.active = active;
}

public boolean isSeeker() {
return seeker;
}

public Location getrandLocation() {
Random random = new Random();
randLocation = (Location.values()[random.nextInt(Location.values().length)]);
System.out.println(randLocation);
return randLocation;
}

public void setRandLocation(Location randLocation) {
this.randLocation = randLocation;
}

@Override
public String toString() {
return "Player [name=" + name + ", active=" + active + ", seeker=" + seeker + ", randLocation=" + randLocation
+ "]";
}

public static void main(String[] args) {
Player p1 = new Player("p1", false);
System.out.println(p1);
}
}

其中 Location 是一组位置的枚举,例如 {BEDROOM, GARDEN, KITCHEN}.etc。当我创建一个播放器,然后打印出播放器时,randLocation始终为空,我尝试更改构造函数但仍然无济于事。任何帮助都会有用的!谢谢。

最佳答案

在构造函数中使用以下行:

this.randLocation=getrandLocation();

关于java - 无法为字段设置随机枚举,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59144137/

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