gpt4 book ai didi

java - 是否有可能声明 4 个选项而 Java 必须随机选择 1 个?

转载 作者:搜寻专家 更新时间:2023-11-01 02:24:03 26 4
gpt4 key购买 nike

我正在制作一款坦克游戏。我希望我的敌人像这样从面板的一侧随机发射:

scherm 表示屏幕/面板
breedte 表示宽度
hoogte 表示高度

public void launch() 
{
//from upside
x_pos = rand.nextInt(Tanks.getSchermBreedte());
y_pos = 0;

//leftside
x_pos = 0;
y_pos = rand.nextInt(Tanks.getSchermHoogte());

//lower side
x_pos = rand.nextInt(Tanks.getSchermBreedte());
y_pos = Tanks.getSchermHoogte();

//right
x_pos = Tanks.getSchermBreedte();
y_pos = rand.nextInt(Tanks.getSchermHoogte());

}

我希望 Java 从这些选项中选择一个,但我真的不知道该怎么做。

最佳答案

使用 java.util.Random.nextInt(4) 为您提供从 0 到 3 的随机数。然后使用 switch 语句选择您的选项之一。

public void launch() {
int random = java.util.Random.nextInt(3);

switch (random) {
case 0:
//from upside
x_pos = rand.nextInt(Tanks.getSchermBreedte());
y_pos = 0;
break;
case 1:
//leftside
x_pos = 0;
y_pos = rand.nextInt(Tanks.getSchermHoogte());
break;
case 2:
//lower side
x_pos = rand.nextInt(Tanks.getSchermBreedte());
y_pos = Tanks.getSchermHoogte();
break;
case 3:
//right
x_pos = Tanks.getSchermBreedte();
y_pos = rand.nextInt(Tanks.getSchermHoogte());
break;
}
}

关于java - 是否有可能声明 4 个选项而 Java 必须随机选择 1 个?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30163782/

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