Contenuti del Corso
C++ OOP
C++ OOP
Constructor Delegation Practice
Compito
Swipe to start coding
- 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.
Soluzione
solution
Tutto è chiaro?
Grazie per i tuoi commenti!
Sezione 2. Capitolo 6
Constructor Delegation Practice
Compito
Swipe to start coding
- 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.
Soluzione
solution
Tutto è chiaro?
Grazie per i tuoi commenti!
Sezione 2. Capitolo 6