Constructors Example class Person { public: Person(const std::string &name); }; class Student : public Person { public: Student(const std::string &name, const std::string &sid) : Person(name) { // ... } };