Why to inherit

Nasza ocena:

3
Wyświetleń: 490
Komentarze: 0
Notatek.pl

Pobierz ten dokument za darmo

Podgląd dokumentu
Why to inherit - strona 1 Why to inherit - strona 2

Fragment notatki:

Why to inherit? class person { char * name, * surname; public: void print_name (); void print_surname(); void print_all(); } class adult { char * name, * surname, * ID_card; public: void print_name(); void print_surname(); void print_ID_card(); void print_all(); } class person { char * name, * surname; public: void print_name (); void print_surname(); void print_all(); } class adult: public person { char * ID_card; public: void print_ID_card(); void print_all(); } ... zobacz całą notatkę



Komentarze użytkowników (0)

Zaloguj się, aby dodać komentarz