如何对某些输入使用重载输入运算符,为其他输入使用正常输入运算符?

时间:2017-04-19 18:13:43

标签: c++

我试图弄清楚如何为某些输入重载输入操作符,但使用普通输入操作符来获取其他值。例如,

cin >> a; //take in a normally
in >> b; //pass with the overloaded input operator

在编写重载运算符函数时如何区分?

0 个答案:

没有答案