简体   繁体   English

为什么重载运算符“=”在我的 class 上对于动态 Arrays 无法正常工作? C++

[英]Why is the overloading operator "=" not working properly on my class for Dynamic Arrays? C++

I'm trying to work with dynamic arrays. When I try to overload the "=" operator it does not work.我正在尝试使用动态 arrays。当我尝试重载“=”运算符时,它不起作用。 When debugging the file it doesn't execute the void function to overload the operator.调试文件时,它不会执行 void function 来重载运算符。

#include <iostream>
using namespace std;

class cppArray {
public:
    cppArray(int size);
    ~cppArray();
    int read(int index);
    void write(int content, int index);
    void operator=(cppArray& s);
    int search(int target);
    int size();
private:
    int* myArray;
    int arraySize;
};

cppArray::cppArray(int size) {
    myArray = new int[size];
    arraySize = size;
}

//delete the memory space assigned to myArray 
cppArray::~cppArray() {
    delete[] myArray;
    myArray = 0;
}

int cppArray::read(int index) {
    if (index < arraySize) {
        return myArray[index];
    }
    else {
        cout << "Out of range" << endl;
        exit(1);
    }
}

Here I'm trying to copy the content of the original array to an auxiliar one, and then redefine the size of the original array so I can add more content to the original array这里我尝试将原数组的内容复制到一个辅助数组中,然后重新定义原数组的大小,这样我就可以在原数组中添加更多的内容

void cppArray::write(int content, int index) {
    if (index < arraySize) {
        myArray[index] = content;
    }
    else {
        cppArray auxArray(arraySize);
        auxArray.myArray = myArray;
        delete[] myArray;
        arraySize = index + 1;
        myArray = new int[arraySize];
        myArray = auxArray.myArray;
        myArray[index] = content;
    }
}

I'm pretty sure this is wrong, but I can't figure out a way to overload it correctly我很确定这是错误的,但我想不出正确重载它的方法

void cppArray::operator=(cppArray& s) {
    delete[] s.myArray;
    s.myArray = new int[arraySize];
    for (int i = 0; i < arraySize; i++)
    {
        myArray[i] = s.myArray[i];
    }
}

int cppArray::size() {
    return arraySize;
}

int main(int argc, char** argv) {
    cppArray dsArray(3);

    dsArray.write(1, 0);
    dsArray.write(2, 1);
    dsArray.write(3, 2);
    dsArray.write(4, 3);

    for (int i = 0; i < dsArray.size(); i++) {
        cout << dsArray.read(i) << "\t";
    }

    cout << endl;

    return 0;
}```

Your implementation is almost correct, but you delete the wrong array.您的实现几乎是正确的,但是您删除了错误的数组。 You should only modify *this object, and not s .您应该只修改*this object,而不是s Also, you should follow conventions , or people will be very surprised when using your class.另外,你应该遵循约定,否则人们在使用你的 class 时会非常惊讶。

Here's corrected version:这是更正后的版本:

//return *this - a very expected convention
cppArray& cppArray::operator=(const cppArray& s) {
// Make sure s is not modified ^^^^
    if (this == &s) {
        return *this; //protection against self writing, things would get bad if you did that
    }

    arraySize = s.arraySize; //copy size first
    delete[] myArray; //delete array from this object
    myArray = new int[arraySize]; //recreate array
    for (int i = 0; i < arraySize; i++)
    {
        myArray[i] = s.myArray[i]; //no changes here
    }

    return *this;
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM