matrix.h.svn-base
来自「QT方面的开发」· SVN-BASE 代码 · 共 20 行
SVN-BASE
20 行
#ifndef _MATRIX_H_#define _MATRIX_H_//startclass Matrix {public: Matrix(int c, int r); Matrix(const Matrix& m); ~Matrix(); double& operator()(int i, int j); double operator()(int i, int j) const; Matrix& operator=(const Matrix& m); Matrix& operator+=(Matrix& m);private: int m_ColSize, m_RowSize; double **m_NumArray;};//end#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?