Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Math 140 Programming Assignment2 Write a class called StringArrayList that is a modified version of the ArrayList class The StringArrayList class contains the following features

image text in transcribed

Math 140 Programming Assignment2 Write a class called StringArrayList that is a modified version of the ArrayList class The StringArrayList class contains the following features Private Instance Variables Stringt] list - stores the String objects for the StringArrayList clas int size - contains the number of String objects added to the StringArrayList object. Note that 0 list.length then increase the length of the list array to minCapacity. Elements stored at positions 0 to size - 1 after changing the capacity should be identical to the values stored in these positions before increasing the array length. (Use techniques found in the increaseCapacity method presented in class.) Example: Suppose list "cat", "dog", "ABC); After calling ensureCapacity(5) the contents of list should be list ("cat", "dog", "ABC", null, null); Note that null values are automatically added to the array when increasing the capacity to five. IMPORTANT: ensureCapacity is the only method that can change the length of the list array

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_2

Step: 3

blur-text-image_3

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

Microsoft Visual Basic 2008 Comprehensive Concepts And Techniques

Authors: Gary B. Shelly, Corinne Hoisington

1st Edition

1423927168, 978-1423927167

More Books

Students also viewed these Databases questions