Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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 cards = new ArrayList();

public Deck(ArrayList cards) {

super();

this.cards = cards;

}

// TODO: Add a contructor that passes in the number of decks, and then populates

// ArrayList with cards (depending on number of decks).

// 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

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Reliability Engineering Designing And Operating Resilient Database Systems

Authors: Laine Campbell, Charity Majors

1st Edition

978-1491925942

More Books

Students also viewed these Databases questions

Question

What is one of the skills required for independent learning?Explain

Answered: 1 week ago