伙计们我现在有点困惑,我正在尝试将程序拆分为file.h file.cpp和main.cpp,这是我的代码示例:
class Mother {
// ...
public:
virtual ~Mother() = default;
};
我收到以下错误:
//file.h//
class matrix
{
private:
class rcmatrix;
rcmatrix *data;
public:
class Cref;
class Size_Check{};
matrix();
~matrix();
matrix(const int rows, const int cols, const double num);
};
class rcmatrix
{
private:
rcmatrix(const rcmatrix&);
rcmatrix &operator =(const rcmatrix&);
public:
int rows;
int cols;
double **mat;
int n;
rcmatrix();
~rcmatrix();
};
//file.cpp
matrix::rcmatrix::rcmatrix()
{
rows=0;
cols=0;
mat=NULL;
n=1;
};
matrix::rcmatrix::rcmatrix(const int r, const int c, const double num)
{
//instructions.
};
我知道它不会以这种方式工作,但我尝试了许多其他解决方案,但没有结果,所以感谢c ++初学者的任何提示/建议。
答案 0 :(得分:2)
在包含类之外声明嵌套类时,必须使用其全名class matrix::rcmatrix
。
否则编译器认为您要声明另一个完全独立的类。