标签:重载运算符

求帮助,二维数组简单的重载运算符相加怎么会出现乱码

#include<iostream> using namespace std; class Array { protected: int a[3][3]; public: Array(){}; Array(int a1,int a2,int a3,int a4,int a5,int a6,int a7,int a8,int a9) { a[0][……

CString类重载运算符more than one operator match these op

m_strline+=nChar; 其中m_strline是一个CString类对象,nChar是一个ASCII码,语句报错“more than one operator match these operand”。是什么原因? 解决方案:40分 ms-help://MS.VSCC.v90/MS.MSDNQTR.v90.chs/dv_vclib/html/……