Multilevel Inheritance | C++ Tutorial

แชร์
ฝัง
  • เผยแพร่เมื่อ 8 ม.ค. 2025

ความคิดเห็น • 4

  • @mariacunha8508
    @mariacunha8508 8 หลายเดือนก่อน +1

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

  • @Garrison86
    @Garrison86 ปีที่แล้ว +5

    This was a super comprehensive video, many thanks!

    • @PortfolioCourses
      @PortfolioCourses  ปีที่แล้ว +1

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

  • @tomastank1030
    @tomastank1030 ปีที่แล้ว +1

    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?