You are viewing a single comment's thread. Return to all comments →
ostream& operator<<(ostream& os, const Person& p) { os << "first_name=" << p.get_first_name() << ",last_name=" << p.get_last_name(); return os; }
Seems like cookies are disabled on this browser, please enable them to open this website
Overloading Ostream Operator
You are viewing a single comment's thread. Return to all comments →