如在本我需要运营商将与指针的工作,所以我没有打电话给我们*a>*b
,但是a>b
。 例如我的运营商<<
可与确定指针:
friend ostream& operator<< (ostream &wyjscie, Para const* ex){
wyjscie << "(" << ex->wrt << ", " << ex->liczbaWystapien <<")"<< endl;
return wyjscie;
}
但是这一次给我一个错误:
friend bool operator> (Para const *p1, Para const *p2){
return p1->wrt > p2->wrt;
}
Error 1 error C2803: 'operator >' must have at least one formal parameter of class type