我已设法重载赋值运算符,所以我确实有一个解决方法,但很高兴知道为什么我无法使它工作。
我的arr2d类的开头看起来像:
template <class type> class arr2d {
private:
type* m_ptr;
int m_nx,m_ny;
public:
arr2d(){
m_ptr = 0;
m_nx = 0;
m_ny = 0;
}
// Default constructor creates a null array
arr2d(int nx, int ny):m_nx(nx),m_ny(ny){
m_ptr = new type [nx*ny];
if ( m_ptr==0 ){cout << "\nError allocating heap memory.\n";}
}
// // Copy constructor
// arr2d(const arr2d& rhs){
// m_ptr = new type [m_nx*m_ny];
// for(int j=0;j<m_ny;j++){
// for(int i=0;i<m_nx;i++){
// m_ptr[j*m_nx+i] = rhs.m_ptr[j*m_nx+i];
// }
// }
// }
等等,
你可以在那里看到我尝试过的复制构造函数。
现在在我的主要内容中,我想使用例如:
来调用复制构造函数arr2d b=a;
b数组现在具有与a相同的值。我做错了什么?
答案 0 :(得分:1)
您复制构造函数未分配数组大小。它应该像
arr2d(const arr2d& rhs) : m_nx(rhs.m_nx), m_ny(rhs.m_ny) {
...
}
答案 1 :(得分:0)
除了初始化m_nx
和m_ny
为6502之外,在声明b时仍需要模板参数。 E.g。
arr2d<int> b = a;