标签: c++
我试图弄清楚如何为某些输入重载输入操作符,但使用普通输入操作符来获取其他值。例如,
cin >> a; //take in a normally in >> b; //pass with the overloaded input operator
在编写重载运算符函数时如何区分?