This question already has answers here:
“Non-static method cannot be referenced from a static context” error

(4个答案)


12个月前关闭。




我希望我在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;
   }
}

这是我的另一个类“经销商”的代码,该类将使用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/

10-10 18:27