【发布时间】:2020-03-27 16:04:58
【问题描述】:
它在 hasNext() 和 next() 方法下有一个红色下划线。它给出的错误是:
找不到符号
符号:方法 hasNext()
位置:Deck类型的可变甲板
next() 方法显示相同的错误。我尝试通过在 House 构造函数中添加 deck = new Deck(); 来创建一个新的 Deck 对象,但它给了我错误:
未报告的异常IOException;必须被抓住或宣布被扔掉
我用谷歌搜索了这意味着什么,并读到也许我需要一个 try catch 块,但我不完全明白为什么。
public class House
{
private double currentBet; // Player's current bet
private double pot; // Amount of the pot in play
private Card firstCard; // First card to be dealt
private Card secondCard; // Second card to be dealt
private Card thirdCard; // Third card to be dealt
private Deck deck; // The card deck to be used
private DeckIterator deckIterator; // The card deck to be used
/**
* Private helper method that returns the next card in the deck.
* If the end of the deck is reached, it shuffles the deck and
* returns the first card off the deck.
* @return Card card;
*/
private Card dealCard()
{
if(!deck.hasNext())
{
deck.shuffle();
}
return deck.next();
}
这是 Deck 类的 sn-p。这是另一个团队成员写的:
public class Deck {
private Card[] deck;
private int currentCard; //index of next card to be dealt
private int remainingCards;
private BufferedImage tempCardImage;
/**
* Constructor to build a deck of cards
*/
public Deck () throws IOException
{
String[] Faces = {"2", "3", "4", "5", "6", "7",
"8", "9", "10", "Jack", "Queen",
"King", "Ace"};
String[] Suits = {"Diamonds", "Clubs", "Hearts", "Spades"};
deck = new Card[52];
currentCard = 0;
~~~irrelevant code here~~~
}
public Iterator<Card> iterator(){
return new DeckIterator( this );
}
public class DeckIterator implements Iterator<Card> {
private Deck d;
private int pos;
DeckIterator( Deck d ){
this.d = d;
}
@Override
public boolean hasNext(){
return pos < d.deck.length;
}
@Override
public Card next(){
if( pos >= d.deck.length ){
throw new NoSuchElementException( "No more cards in deck" );
}
return d.getCard( pos++ );
}
@Override
public void remove() {
throw new UnsupportedOperationException("Not supported yet."); }
}
}
这是我根据你们提出的建议修改的代码:
public class House
{
private double currentBet; // Player's current bet
private double pot; // Amount of the pot in play
private Card firstCard; // First card to be dealt
private Card secondCard; // Second card to be dealt
private Card thirdCard; // Third card to be dealt
private Deck deck; // The card deck to be used
DeckIterator deckIterator = deck.iterator();
/**
* Constructor that receives that amount of the buy in and sets the pot.
* @param buyIn
*/
public House(double buyIn)
{
pot = buyIn;
}
/**
* Private helper method that returns the next card in the deck.
* If the end of the deck is reached, it shuffles the deck and
* returns the first card off the deck.
* @return Card card;
*/
private Card dealCard()
{
if(!deckIterator.hasNext())
{
deck.shuffle();
}
try
{
deckIterator.next();
}
catch (NoSuchElementException e)
{
System.out.println(e);
}
return deckIterator.next();
}
【问题讨论】:
-
你需要为 Deck 类显示签名
-
这些方法在
DeckIterator,而不是Deck。如果你要调用它们,你需要一个DeckIterator类型的变量。 -
你的 Deck 类里面有什么?如果它不是一个集合,那么你不能使用这两种方法
-
抱歉,我现在添加了更多的 Deck 类。谢谢。