+ 1
What is a bd(b)
#include <string> #include "Birthday.h" class Person { public: Person(string n, Birthday b) : name(n), bd(b) { } private: string name; Birthday bd; };
1 Answer
+ 3
Constructor member initialization
https://www.sololearn.com/learn/CPlusPlus/1896/