Articles — Page 10

polymorphism -2

using virtual inheritance to solve the diamond problem how many instances of Base class are instantiated for one instance of secDerived which is derived from Derived class when…

Coding

polymorphism -1

basics of polymorphism e.g. invoking methods using an instance of Base class which belongs to Derived class. demolist11_1…

Coding

implementing Inheritance - Q&A

Q&A Q : class D2 inherits from class D1, which inherits from class Base. To keep D2 from accessing the public members in Base, what access specifier would you use and where…

Coding

Inheritance

private inheritance private is used in the line where the derived class declares its inheritance from a base class. syntax 123456789class Base{ //...base class members and…

Coding

basics of inheritance - part 2

invoking method of a base class in a derived class Typically, if your specialized implementations in derived class need to reuse the base class's generic implementation, you can…

Coding
18910111214