Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Use java please (this is java 2) Write the definition of a class named shoppingList that include the following private members: - list: an array
Use java please (this is java 2)
Write the definition of a class named shoppingList that include the following private members: - list: an array of type String to hold the names of items in the list. - numItems: an integer to represent the number of items in the list. Additionally, the class should include the following public methods: 1. A default constructor to initialize numitems to zero and create list as an array of size 10. 2. A constructor with an integer parameter (m) to initialize numItems to zero and create list as an array of size (m). 3. A method named additem that takes a string (y). The method should add ( y ) to the end of the list array and increment numltems if it is not full. 4. A method named replace that takes two strings (M,N). The method should replace all of occurrences of (M) in the list array by (N). 5. A method named print to print the items in the list array 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