Question
Can not figure this program out for my programming class need an example please and thank you Array lists are objects that, like arrays, provide
Can not figure this program out for my programming class need an example please and thank you
Array lists are objects that, like arrays, provide you the ability to store items sequentially and recall items by index. Working with array lists involves invoking ArrayList methods, so we will need to develop some basic skills. Lets start with the code below:
import java.util.ArrayList; public class ArrayListRunner { public static void main(String[] args) { ArrayListnames = new ArrayList (); System.out.println(names); } }
The main method imports java.util.ArrayList and creates an ArrayList that can hold strings. It also prints out the ArrayList and, when it does, we see that the list is empty: [ ]. Complete the following tasks by adding code to this skeleton program. If you are asked to print a value, provide a suitable label to identify it when it is printed. a) Invoke add() to enter the following names in sequence: Alice, Bob, Connie, David, Edward, Fran, Gomez, Harry. Print the ArrayList again.
b) Use get() to retrieve and print the first and last names.
c) Print the size() of the ArrayList.
d) Use size() to help you print the last name in the list.
e) Use set() to change Alice to Alice B. Toklas. Print the ArrayList to verify the change.
f) Use the alternate form of add() to insert Doug after David. Print the ArrayList again.
g) Use an enhanced for loop to print each name in the ArrayList.
h) Create a second ArrayList called names2 that is built by calling the ArrayList constructor that accepts another ArrayList as an argument. Pass names to the constructor to build names2. Then print the ArrayList.
i) Call names.remove(0) to remove the first element. Print names and names2. Verify that Alice B. Toklas was removed from names, but not from names2.
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