โ Back to Polymorphism
Question 568
Generic Max Method
Generic Max Method
Complete the generic methodMax<T>so it returns the larger of two values of ANY comparable type. This is parametric polymorphism: one method works forint,string, and more. Do NOT write aMainmethod. The tester printsMax(3, 8)thenMax("apple", "banana"): 8 banana
Expected Output:
8 banana
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.