Question
There are 52 cards in a deck of cards. The Deck class extends (inherits from) MyArrayList holding the 52 Cards. It does not have any
There are 52 cards in a deck of cards. The Deck class extends (inherits from) MyArrayList holding the 52 Cards. It does not have any additional instance variables. The list of additional methods includes:
1. Deck () default constructor initializing the 52-card array. It passes the number 52 to the parent constructor to create a MyArrayList of only 52 Cards. It calls generateDeck () to initialize the array.
2. void generateDeck () initializes the Cards, using the Card two-parameter constructor - Card (int rank, int suit).
3. void shuffle () It shuffles the Deck of Cards. See Lesson 2 slides and source code for an algorithm for shuffling a card deck of course, it must be modified somewhat for this program.
4. String toString () See the Sample output to see how to code the String representation of the Deck.
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