โ Back to Polymorphism
Question 596
Generic Container Class
Generic Container Class
A generic class is a single class definition that adapts to whatever type you plug in. Write aContainer<T>class that stores one item of typeT(passed to its constructor) and exposes aGet()method returning that item. Do NOT write aMainmethod. The tester makes aContainer<string>holdingboxand aContainer<int>holding5, so the program prints: box 5
Expected Output:
box 5
Topics:
Polymorphism
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cw, cr, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.