This is what I need to do:
This constructor initializes the Deck with 52 card objects, representing the 52 cards that are in a standard deck. The cards must be ordered from ace of spades to king of diamonds.
Here is my attempt at it:
private Card[] cards;
String suit, card;
private final int DECK_SIZE = 52;
public Deck()
{
cards = new Card[DECK_SIZE];
String suit[] = {"spades", "hearts", "clovers", "diamonds"};
String card[] = {"Ace", "2", "3", "4", "5", "6", "7", "8", "9", "10", "Joker", "Queen", "King"};
for (int c = 0; c<13; c++)
for (int s = 0; s<4; s++)
{
cards.equals(new Card(suit, card));
}
}
It is giving me an error for this part "(new Card(suit, card));" saying constructor Card(String[], String[]) is undefined. Im not sure if we are allowed to add extra constructors. The code written for us does include a Card(int, int) though.
Ok what about this? Would this work?
public class Deck {
private Card[] cards;
int value, suit;
private final int DECK_SIZE = 52;
public Deck()
{
//1 = Ace, 11=joker, 12=queen, 13=king
//1 = spades, 2 = hearts, 3 = clovers, 4 =diamonds
cards = new Card[DECK_SIZE];
int suit[] = {1, 2, 3, 4};
int card[] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13};
for (int c = 0; c<13; c++)
for (int s = 0; s<4; s++)
{
cards.equals(new Card(suit[s], card[c]));
}
}
constructor Card(String[], String[]) is undefined." tells it all. You are giving it suit and card. They are defined asString suit[]andString card[]. They are both String arrays. Is this really what you want to make a card out of? – bdares Apr 12 '11 at 0:45JforJACKnotJOKER. – Javed Akram Apr 12 '11 at 0:58