gpt4 book ai didi

java - 编译器认为我正在静态上下文中从另一个类调用变量,但我不是

转载 作者:行者123 更新时间:2023-12-01 18:28:17 27 4
gpt4 key购买 nike

我希望 BlackJack 项目中的荷官类打印 arrayList“theDeck”的前两张“牌”。我收到编译器错误(稍后显示)并且无法弄清楚它的含义。这是我的“Deck”类的代码,它制作一副纸牌,将它们洗牌,然后将它们放入 arrayList“theDeck”中:

 *  Compilation:  javac Deck.java
* Execution: java Deck
* Author: Aidan Hill
* Status: Working
* Priority: None
*
******************************************************************************/
import java.util.ArrayList;
/******************************************************************************/


public class Deck extends Game {
int n;
//Deck deck = new Deck();
String[] deckArray = new String[n];
String[] SUITS = {
"Diamonds", "Clubs", "Spades", "Hearts"
};

String[] RANKS = {
"2", "3", "4", "5", "6", "7", "8", "9", "10",
"Jack", "Queen", "King", "Ace"
};

public Deck() {
// constructor
n = SUITS.length * RANKS.length;
deckArray = new String[n];
for (int i = 0; i < RANKS.length; i++) {
for (int j = 0; j < SUITS.length; j++) {
deckArray[SUITS.length*i + j] = RANKS[i] + " of " + SUITS[j];
}
}
}


public String shuffleDeck() {
// shuffle the deck
int i;
for (i = 0; i < n; i++) {
int r = i + (int) ((n - i) * Math.random());
String temporary = deckArray[r];
deckArray[r] = deckArray[i];
deckArray[i] = temporary;
}
return deckArray[i - 1];
}


public ArrayList<String> theDeck() {
// save shuffled deck in an arraylist
ArrayList<String> theDeck = new ArrayList<String>();
for (int i = 0; i < n; i++) {
theDeck.add(deckArray[i]);
}
return theDeck;
}
}

这是我的另一个类“Dealer”的代码,它将获取 arrayList“theDeck”的前两个元素并将它们打印到控制台:

 /******************************************************************************
* Compilation: javac Dealer.java
* Execution: java Dealer
* Author: Aidan Hill
* Status: Under Construction
* Priority: !
*
******************************************************************************/
import java.util.ArrayList;
import java.util.ArrayList;

/******************************************************************************/


public class Dealer extends Game {


public ArrayList<String> dealSumCards() {
ArrayList<String> hand = new ArrayList<String>();
hand.add(Deck.theDeck().toString());
System.out.println("The first hand is: " + hand);
return hand;
}
}

当我尝试编译时,收到此错误消息:

 ----jGRASP exec: javac -encoding UTF-8 -g @BlackJack_source_files_1638219710914506414jgr
Dealer.java:20: error: non-static method theDeck() cannot be referenced from a static context
hand.add(Deck.theDeck().toString());
^
1 error

----jGRASP wedge2: exit code for process is 1.
----jGRASP: operation complete.

我的错误是什么?这两种方法都不是静态的......我是不是很傻?我尝试更换经销商来延长游戏而不是套牌,反之亦然,同样的问题。(如果您需要更多代码,请告诉我,我将编辑帖子。)
编辑:我现在意识到有很多相关的问题。抱歉哈哈。请对我保持耐心,我是编码和这个网站的新手。

最佳答案

Deck 是类的名称。 theDeck() 不是类方法;您必须在类的实例上调用它。

有两种方法可以让它发挥作用。一种方法是实例化一个 Deck 对象,并对其调用 theDeck() :

Deck deck = new Deck();
hand.add(deck.theDeck().toString());

另一种方法是使 theDeck() 静态:

public static ArrayList<String> theDeck() {
// save shuffled deck in an arraylist
ArrayList<String> theDeck = new ArrayList<String>();
for (int i = 0; i < n; i++) {
theDeck.add(deckArray[i]);
}
return theDeck;
}

这将使 Deck.theDeck() 工作 - 除了 n 是一个非静态字段;您需要将其设为静态或将其作为方法参数传递。

关于java - 编译器认为我正在静态上下文中从另一个类调用变量,但我不是,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60200644/

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