目录
一、构造函数
1、头文件声明 CMatrix.h
此外会用列表初始化成员变量:CMatrix(): m_nRow(0), m_nCol(0), m_pData(NULL);
bool Create(int nRow, int nCol, double *pData=NULL): 先删除原有空间,根据传入行列创建空间,如果pData不为空要将pData的内容拷贝到m_pData中。
//构建CMatrix.h头文件
#ifndef CMATRIX_H
#define CMATRIX_H
#include <iostream>
using namespace std;
class CMatrix
{
public:
CMatrix();//不带参数的构造函数
CMatrix(int nRow,int nCol,double *pData=NULL);//带行、列及数据指针等参数的构造函数,并且参数带默认值
CMatrix(const CMatrix& m);//拷贝构造函数
CMatrix(const char * strPath);//带文件路径参数的构造函数
~CMatrix();
bool Create(int nRow,int nCol,double *pData=NULL);
void Set(int nRow,int nCol,double dVale);
void Release();
friend istream & operator>>(istream& is,CMatrix & m);
friend ostream & operator<<(ostream& os,const CMatrix &m);
CMatrix& operator=(const CMatrix& m);
CMatrix& operator+=(const CMatrix& m);
// CMatrix& operator+(const CMatrix& m);
// CMatrix operator+(const CMatrix& m1,const CMatrix& m2);
double & operator[](int nIndex);
double & operator()(int nRow,int nCol);
bool operator ==(const CMatrix& m);
bool operator !=(const CMatrix& m);
operator double();
private:
int m_nRow;
int m_nCol;
double *m_pData;
};
CMatrix operator+(const CMatrix& m1,const CMatrix& m2);
inline void CMatrix::Set(int nRow,int nCol,double dVal)
{
m_pData[nRow*m_nCol+nCol]=dVal;
}
#endif
2、函数的实现(类内部方法)CMatrix.cpp
2.1 构造器
构造器可以提供许多特殊的方法,构造器作为一种方法,负责类成员变量(域)的初始化。实例构造器分为缺省构造器和非缺省构造器。
2.1.1 缺省构造器(无参构造器)
无参数的构造方法,可以控制new对象。假设无参构造方法不是public 修饰 而是private ,那么别人将不只能直接new一个对象,这就起到了控制作用。
CMatrix::CMatrix():m_nRow(0),m_nCol(0),m_pData(0)
{
}
2.1.2 有参构造器
有参数的构造方法的主要目的是为类中的属性初始化
CMatrix::CMatrix(int nRow,int nCol,double *pData):m_pData(0)
{
Create(nRow,nCol,pData);
}
CMatrix::CMatrix(const CMatrix& m):m_pData(0)
{
*this = m;
}
CMatrix::CMatrix(const char * strPath)
{
m_pData = 0;
m_nRow = m_nCol = 0;