运算符重载的经典程序
摘要:
#include#includeusing namespace std;class test{public: int v; /*构造函数*/ test():v(0){} test(const int &a):v(a){} test(const test &t1):v(t1.v){} /*以下重载小于号 > 输出> (istream & is, test &t1){ cin >> t1.v; return is; }};int main(){ test t0, t1(4); test t2(... 阅读全文