gpt4 book ai didi

java - 如何将字符串附加到整数数组?

转载 作者:塔克拉玛干 更新时间:2023-11-01 22:42:25 24 4
gpt4 key购买 nike

我已经在这个网站上做了一些关于这个的研究,但是,我在寻找我可以使用的东西时遇到了一些麻烦。我正在尝试创建一个与口袋妖怪类似的程序,但要简单得多并且基于文本。目前我正在使用数组来存储口袋妖怪的统计数据。这很好用,但是当我需要打印 Pokemon 的名字时,我必须手动输入它。这工作正常,但我想让玩家与随机的口袋妖怪战斗。这是我当前的代码:

public static void main(String[] args) {
//Declare the Pokemon to be used
int[] Player = {0, 0, 0, 0, 0, 0 };
int[] Blastoise = {79, 83, 100, 85, 105, 78 };
int[] Raichu = {60, 90, 55, 90, 80, 110};
int[][] Pokemon = new int[][] {Blastoise, Raichu, Player};

Scanner input = new Scanner(System.in);

startBattle(input, Pokemon)
}
public static String startBattle(Scanner input, int[][] Pokemon) {
System.out.println("A wild Pokemon appeared!");
int r = (int) (Math.random() * 1);
System.out.println("A wild " + **POKEMON NAME** + " appeared!");
System.out.print("What Pokemon do you choose? ");
String userPokemon = input.next();
return userPokemon;
}

它说 POKEMON NAME 的地方就是我想要 Pokemon 名字的地方。我知道获取数组名称或将字符串添加到 int 数组非常困难(我会将名称添加到列表 [0] 点)。有什么方法可以至少将一个字符串与其中一个列表相关联,这样我就可以调用随机选择的神奇宝贝的名称吗?谢谢!

最佳答案

创建一个类。赋予它表示描述您的现实世界实体的事物的属性,在本例中为口袋妖怪。

属性至少是一个表示名称的字符串和用于描述字符的整数数组。

这是一个例子:

public class Pokemon {
private String name;

public String getName() { return this.name; }
public void setName(String name) { this.name = name; }

private int hp;

public int getHP() { return this.hp; }
public void setHP(int hp) { this.hp = hp; }

// Repeat the pattern for all properties that describe a Pokemon
// hp, attack, defense, special attack, special defense, and speed
}

关于java - 如何将字符串附加到整数数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33834953/

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