โ Back to Classes
Question 170
Create a Simple Generic Box Class
Create a Simple Generic Box Class
Create a generic class namedBox<T>that stores one item. Add a private field nameditem, a constructor that sets it, and a methodgetItem()that returns it. IMPORTANT: Do NOT write a main method. A hidden test will create aBox<String>with "Apple" and aBox<Integer>with 42, then callgetItem()on each and print the result. Expected Output: Apple 42
Expected Output:
Apple 42
Topics:
GenericsClasses
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.