私は現在ポーカーJavaゲームの演習に取り組んでいますが、理解できないこの醜いエラーが発生します。コンパイラはそれらを100個スローするため、何らかの構文エラーである必要があります。しかし、私はエラーがどこにあるのかわかりませんか?
import java.util.Random;
public class Poker
{
private Card[] deck;
private Card[] hand;
private int currentCard;
private int numbers[], triples, couples;
private String faces[], suits[];
private boolean flushOnHand, fourOfAKind, isStraight;
private static final int NUMBER_OF_CARDS = 52;
private static final Random randomNumbers = new Random();
Poker()
{
faces = { "Ace", "Deuce", "Three", "Four", "Five",
"Six", "Seven", "Eight", "Nine", "Ten", "Jack", "Queen", "King"};
suits = { "Hearts", "Diamonds", "Clubs", "Spades" };
numbers = new int[ 13 ];
deck = new Card[ NUMBER_OF_CARDS ];
triples = 0; // right here's where the compiler starts complaining
couples = 0;
...
構文エラーを見つけることができませんが?
ところで、Card
は別のクラスです。