โ Back to Interfaces
Question 640
Implement a Generic Interface
Implement a Generic Interface
The generic interfaceIContainer<T>declaresAdd(T item),Get(int index), and aCountproperty. Write aBox<T>class that implements it, backed by aList<T>. The tester adds items, then prints the count and some retrieved items. Do NOT write aMainmethod. After adding "a" and "b" to aBox<string>the program prints: 2 a b
Expected Output:
2 a b
Topics:
Interfaces
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.