Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <string>
- class A
- {
- public:
- //конструктор по умолчанию
- A()
- {
- std::cout << "Пустое сообщение" << std::endl;
- }
- //перегрузка конструктора
- A(std::string msg)
- {
- this->msg = msg;
- std::cout << msg << std::endl;
- }
- private:
- std::string msg;
- };
- //наследование класса A в public поле класса B
- class B : public A
- {
- public:
- //наследование второй перегрузки коструктора класса A
- B() : A("Текст")
- {
- }
- };
- int main(int argc, char *argv[])
- {
- setlocale(LC_ALL, "Rus");
- srand(time(NULL));
- B b;
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement