重载圆括号运算符"()": 1 2 3 4 int& Matrix::operator()(intnRow, intnCol) { return*(m_nMatrix + nRow * m_nCol + nCol) ; //返回矩阵中第nRow行第nCol列的值 } 测试代码: 1 2 3 4 5 6 7 8 9 10 11 12 13 intmain() { Matrix mtx(10, 10) ; //生成一个矩阵对象aM cout <...