Answers for "class inheritance cpp constructor"

C++
1

c++ base constructor

class Derived: public Base
{
public:
    double m_cost;
 
    Derived(double cost=0.0, int id=0)
        : Base{ id }, // Call Base(int) constructor with value id!
            m_cost{ cost }
    {
    }
 
    double getCost() const { return m_cost; }
};
Posted by: Guest on January-18-2021

Code answers related to "class inheritance cpp constructor"

Browse Popular Code Answers by Language