...
/Challenge 1: Override a Method Using the Super Function
Challenge 1: Override a Method Using the Super Function
In this challenge, you will override a method using super().
We'll cover the following...
Problem statement
When a method in a derived class overrides a method in a base class, it is still possible to call the overridden method using the super()
function.
If you write
super().method()
, ...