在过去的一个小时里,我一直在尝试解决 java.lang.NullPointerException。当我调用 play() 方法并输入 no 时会发生此错误。我已经评论了错误指向下方的位置。我将不胜感激。谢谢。
import java.util.ArrayList;
public class Game
{
private InputReader input ;
private Deck newDeck;
private ArrayList <Card> hand;
public Game(Deck deckToAdd)
{
input = new InputReader();
newDeck = deckToAdd;
hand = new ArrayList <Card>();
}
public void dealCard()
{
hand.add(newDeck.takeCard());
}
public void showHand()
{
for(Card showCards: hand){
if(hand == null){
System.out.println("(Warning, the deck may have been empty the last time you dealt a card)");
}
System.out.println(showCards.getDescription() + " of " + showCards.getSuit());
// Error points to above line
}
}
public int getHandValue()
{
int counter = 0;
int handValue = 0;
while(counter < hand.size()){
Card checker = hand.get(counter);
handValue += checker.getValue();
counter++;
}
return handValue;
}
public void play() //Error occurs when invoking this method and selecing no, points to showHand() method
{
boolean userWantsToPlay = true;
while(userWantsToPlay){
dealCard();
showHand();
System.out.println("Hand Value : " + getHandValue());
System.out.println("Do you want to continue? (yes or no)");
String userInput = input.getInput();
if(userInput == "no"){
userWantsToPlay = false;
}
}
}
}