Calling inherited functions and overriding behavior 24.8 Hiding inherited functionality 24.9 Multiple inheritance 24.x Chapter 24 summary and quiz Chapter 25 Virtual Functions 25.1 Pointers and references to the base class of derived objects 25.2
VirtualFunctions.cpp Add files via upload Aug 16, 2023 unique_ptr.cpp Add files via upload Aug 16, 2023 unique_ptr_task.cpp Add files via upload Aug 16, 2023 Repository files navigation README ✏️ LearnCPP Reading C++ lessons from learncpp.com and writing some code :)About...
-"17-9-multiple-inheritance.md" -"17-x-Chapter-17-comprehensive-quiz.md" -18. 虚函数: -"18-1-pointers-and-references-to-the-base-class-of-derived-objects.md" -"18-2-virtual-functions-and-polymorphism.md" -"18-3-the-override-and-final-specifiers-and-covariant-return-types.md" ...
In the program,we implement inheritance.class Quote is the base class,while Disc_Quote,Bulk_Quote,Lim_Quote are classes inherited by Quote. To implement dynamic-binding,we use virtual-function. To avoid memory-leak,we use virtual destructor. To manage memory by an "elegant way",we use smart...
Multiple inheritance 17.x Chapter 17 comprehensive quiz Chapter 18 Virtual Functions 18.1 Pointers and references to the base class of derived objects 18.2 Virtual functions and polymorphism 18.3 The override and final specifiers, and covariant return types ...