Answer the question
In order to leave comments, you need to log in
Answer the question
In order to leave comments, you need to log in
In C++, you need to separately implement the child constructor
class Base {
public:
Base(int _i): i(_i) {//блок инициализации
}
private:
int i;
}
class Derived : public Base {
public:
Derived(int _i): Base(_i) { //зовём super конструктор
}
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question