โ Back to Classes
Question 185
Create a Generic Student Record
Create a Generic Student Record
Complete theStudentRecord<T, U>class. The fields are already declared. Add a constructor that sets them, and complete theprintRecord()method so it prints the name and grade on separate lines. IMPORTANT: Do NOT write a main method. A hidden test will createStudentRecord<String, Integer>andStudentRecord<String, String>objects and callprintRecord()on each.
Expected Output:
Alice 95 Bob A
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.