gpt4 book ai didi

java - 卡无法解析为变量

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

我正在做一个个人项目。这将是一款纸牌游戏,您可以将其与口袋妖怪进行比较。不幸的是,我遇到了一个错误,我无法弄清楚是什么原因造成的。如果有任何帮助,我将不胜感激!

好的,所以我得到了带有构造函数的卡片类(我省略了不必要的属性)

public class Card 
{
String name;
String cardID;
int strFire;
int strEarth;

public Card(String n, String id, int fire, int earth)
{
name = n;
cardID = id;
strFire = fire;
strEarth = earth;
}
}

然后我得到了 Deck 类,它应该创建所有卡片的实例。

public class Deck 
{
static void createDeck()
{
Card hoax06 = new Card("Nirwadas the Traveler", "hoax06", 3, 2);
System.out.println(hoax06.name); // this works
}
}

最后,我得到了包含 main 的 Game 类。

public class Game 
{
public static void main(String[] args)
{
Deck.createDeck();
System.out.println(hoax06.name); // hoax06 cannot be resolved to a variable
}
}

我知道答案可能很简单,但 java 的访问系统仍然让我感到困惑。我也浏览过类似错误的论坛,但无法将它们应用到我的案例中。我应该如何从 main 中引用卡片?

最佳答案

卡片实例是在 Deck 类中创建的,因此 Game 类无法直接了解它。此外,一旦 createDeck() 方法结束,您就会失去对卡片的引用,实例也会消失。

这是一个简单的例子:

public class Deck 
{
public Card hoax06;

static Deck createDeck()
{
Deck deck = new Deck();
deck.hoax06 = new Card("Nirwadas the Traveler", "hoax06", 3, 2);
return deck;
}
}

public class Game
{
public static void main(String[] args)
{
Deck deck = Deck.createDeck();
System.out.println(deck.hoax06.name); // this is where the error occurs
}
}

关于java - 卡无法解析为变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14788849/

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