105 - Base Class Functions
It is possible to call functions further up in the inheritance hierarchy internally by explicitly specifying the contract using ContractName.functionName()
or using super.functionName()
if you want to call the function one level higher up in the flattened inheritance hierarchy.
- Inheritance Hierachy
- Derived -> Base
- Explicit
Contract.function()
- One Level Up
super.function()