1234567891011121314
class Person{ friend bool operator&==(Person &prs){ if (*this->firstname == prs.firstname){ if(*this->lastname == prs.lastname) return true; } else return false; }
this
123
(*this).firstname this->firstname firstname