Dana jest definicja klasy osoba definiująca obiekt jakim jest osoba ma postać:
class osoba{ //1
char *nazw; char *imie; char *adres; //2
public: //3
friend ifstream & operator>>(ifstream& x, osoba& z); //4
osoba(); //5
osoba(char *n, char *i, char *a); //6
osoba (cosnt osoba &); //7
};
Dla podanej klasy osoba w poniższej ramce napisz definicje zadeklarowanego (linia 5) operatora >>
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
#include <string>
ifstream & operator >> (ifstream & x, osoba &z) {
x >> std::string(nazw);
x >> " ";
x >> std::string(imie);
x >> " ";
x >> std::string(adres);
return x;
}