Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Bag class had two member variables one was called size (int type) and the other was item (type T). You must modify that class to

Bag class had two member variables one was called size (int type) and the other was item (type T). You must modify that class to have four member variables called size, item1, item2 and item3. The add method needs to be modified as well. If size is zero, item1 should refer to the item and size needs to be incremented. On the other hand if size is one, item2 should refer to the item and size needs to be incremented. Finally if size is 3, a message should be displayed by the add method saying the bag is full.

You must also write a toString method and test all the methods of the class. The interface must be written as well and main should implement that interface.

image text in transcribed

image text in transcribed

Bag Interface java x 2 public interface Bag Interface f 3 public void display() 4 public void ad (T it)

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

More Books

Students also viewed these Databases questions