Multilevel Inheritance | C++ Tutorial

Sdílet
Vložit
  • čas přidán 27. 08. 2024
  • How to use multilevel inheritance in C++ with a demonstration. Source code: github.com/por.... Check out www.portfolioc... to build a portfolio that will impress employers!

Komentáře • 4

  • @Garrison86
    @Garrison86 Před rokem +5

    This was a super comprehensive video, many thanks!

    • @PortfolioCourses
      @PortfolioCourses  Před rokem +1

      You're welcome Mike, I'm glad you found it to be comprehensive! :-)

  • @mariacunha8508
    @mariacunha8508 Před 4 měsíci

    I love how simple and easy to follow this explanation was. Also appreciate carrying over the MenuItem example from the previous video :)

  • @tomastank1030
    @tomastank1030 Před 8 měsíci

    Suppose there are several derived classes that have same member variables and same member functions. Even though these derived member variables and member functions are not needed by base class, it is convenient and efficient to declare them in base class only to avoid duplication / repeating in each derived class. Do you agree with this approach?