Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialDaniel Breen
14,943 PointsWouldn't it make more sense to only accept Student?
In the video, the override methods both accept an object then perform obj as Student
to check if it's actually a student that was passed in. Is this for the examples purposes, or is there a specific reason we wouldn't just take a type of Student
in the parameters?
1 Answer
Steven Parker
231,198 PointsAn override must match the "signature" of the virtual method it is overriding. And in this case, the signature of the original method includes having an "object" parameter.