Skip to content

Latest commit

 

History

History
18 lines (18 loc) · 639 Bytes

Base Class Functions.md

File metadata and controls

18 lines (18 loc) · 639 Bytes

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.


Slide Screenshot

105.jpg


Slide Text

  • Inheritance Hierachy
  • Derived -> Base
  • Explicit
    • Contract.function()
  • One Level Up
    • super.function()

References


Tags