CJCoding With Joseph
15per day

Create a Simple Generic Box Class

Create a generic class named Box<T> that stores one item. Add a private field named item, a constructor that sets it, and a method getItem() that returns it.

IMPORTANT: Do NOT write a main method. A hidden test will create a Box<String> with "Apple" and a Box<Integer> with 42, then call getItem() 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.