Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Basics Java Create Class called GenericArraylists Instance variables include: final initial capacity; Private int size; Private T[] array; Create your new arraylist. Remember java does

image text in transcribed
Basics Java Create Class called GenericArraylists Instance variables include: final initial capacity; Private int size; Private T[] array; Create your new arraylist. Remember java does not allow you to create regular generic array. Casting object to T[ ] is needed. implement: 3 methods to Add to index (@params int index, T data) - front (@params T data) back (@params T data) 3 methods to Remove from - index (@params int index) - front back All remove methods should return what was removed Methods should throw relevant exceptions for illegal and IndexOutOfBound A method to Get at index (@param int index) returns data at index A method to clear list and resets size

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

Records And Database Management

Authors: Jeffrey R Stewart Ed D, Judith S Greene, Judith A Hickey

4th Edition

0070614741, 9780070614741

More Books

Students also viewed these Databases questions

Question

What is the best conclusion for Xbar Chart? UCL A X B C B A LCL

Answered: 1 week ago