Зміст курсу
C++ OOP
C++ OOP
Constructor Delegation Practice
Завдання
Swipe to show code editor
- Rewrite this constructors using constructor delegation.
- The default constructor should delegate to a parameterized constructor, passing default values.
- The constructor that initializes only the name should delegate to the parameterized constructor, passing default values for the other members.
- The constructor that initializes name and age should delegate to the parameterized constructor, providing a default value only for salary.
- The constructor that initializes all member variables remains unchanged.
Рішення
solution
Перейдіть на комп'ютер для реальної практикиПродовжуйте з того місця, де ви зупинились, використовуючи один з наведених нижче варіантів
Все було зрозуміло?
Дякуємо за ваш відгук!
Секція 2. Розділ 6
Constructor Delegation Practice
Завдання
Swipe to show code editor
- Rewrite this constructors using constructor delegation.
- The default constructor should delegate to a parameterized constructor, passing default values.
- The constructor that initializes only the name should delegate to the parameterized constructor, passing default values for the other members.
- The constructor that initializes name and age should delegate to the parameterized constructor, providing a default value only for salary.
- The constructor that initializes all member variables remains unchanged.
Рішення
solution
Перейдіть на комп'ютер для реальної практикиПродовжуйте з того місця, де ви зупинились, використовуючи один з наведених нижче варіантів
Все було зрозуміло?
Дякуємо за ваш відгук!
Секція 2. Розділ 6
Перейдіть на комп'ютер для реальної практикиПродовжуйте з того місця, де ви зупинились, використовуючи один з наведених нижче варіантів