我正在尝试学习运算符重载,但第一次尝试时出错。
template<typename T>
class Pair
{
public:
T x; T y;
Pair(T x, T y): x(x), y(y){};
~Pair(){};
/* data */
};
template<typename T>
ostream& operator<<(ostream &os, const Pair<T> &p)
{
return os<<"("<<p.x<<", "<<p.y<<")";
}
template<typename T>
istream& operator>>(istream &is, Pair<T> &p)
{
return is>>"(">>p.x>>", ">>p.y>>")";
}
我希望能够做到以下几点:
Pair<int> p;
cin>>p;
cout<<p;
并且为Pair
对象提供输入意味着能够(1, 2)
作为输入提供,然后cin
产生一个Pair<int>
。
我在is>>"("
. 纠正这种情况的方法是什么?