โ Back to Methods
Question 178
Store Three Generic Items in an ArrayList
Store Three Generic Items in an ArrayList
Complete the methodbuildListso it creates anArrayList<T>, adds the three given values in order, and returns the list. IMPORTANT: Do NOT write a main method. A hidden test will callGenericListBuilder.buildList("red", "blue", "green")andGenericListBuilder.buildList(1, 2, 3)and print each returned list. Expected Output: [red, blue, green] [1, 2, 3]
Expected Output:
[red, blue, green] [1, 2, 3]
Topics:
GenericsMethods
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (sysout, psvm, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.