Question
Please help me with the TODO statements in the program package pkgCore; import java.util.ArrayList; public class Deck { // TODO: Add 'cards' attribute that is
Please help me with the TODO statements in the program
package pkgCore;
import java.util.ArrayList;
public class Deck {
// TODO: Add 'cards' attribute that is an ArrayList of Card
private ArrayList
public Deck(ArrayList
super();
this.cards = cards;
}
// TODO: Add a contructor that passes in the number of decks, and then populates
// ArrayList
// Example: Deck(1) will build one 52-card deck. There are 52 different cards
// 2 clubs, 3 clubs... Ace clubs, 2 hearts, 3 hearts... Ace hearts, etc
// Deck(2) will create an array of 104 cards.
// TODO: Add a draw() method that will take a card from the deck and
// return it to the caller
}
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started