Skip to content

Latest commit

 

History

History
20 lines (18 loc) · 625 Bytes

Virtual Functions.md

File metadata and controls

20 lines (18 loc) · 625 Bytes

Functions without implementation have to be marked virtual outside of interfaces.

In interfaces, all functions are automatically considered virtual.

Functions with private visibility cannot be virtual.


Slide Screenshot

108.jpg


Slide Text

  • Virtual Function Rules
  • No Implementation -> virtual
  • interface -> All Functions Considered virtual
  • private visibility -> Cannot be virtual

References


Tags