1

首先,我想说这是一项硬件任务,我只是对我面临的错误有疑问

我制作了一个带有插入函数的向量模板,该函数将 data_type 添加到动态数组的末尾。这就是我目前所拥有的。

// Insert the value at the specified index by moving the tail
// when Size = Capacity the Vector has to be reallocated first 
// to accomate the new element
void Insert(const DATA_TYPE& value, int index){

    // If the Capacity is not large enough then ...
    // allocate large vector
    if (Size >= Capacity){
        // 0. Let's boost the capacity
         Capacity += CAPACITY_BOOST;
        // 1. Allocate new larger vector
         DATA_TYPE* newData = new DATA_TYPE[Capacity];

        // 2. Copy from old Data into the newData
         for( int i=0; i< Size; i++)
                newData[i] = Data[i];

        // 3. Delete the old Data
         delete[] Data;

        // 4. Replace old Data-pointer with the newData pointer
        Data = newData;
    }

    // Move the tail
    for(int i=index; i<Size;i++){
        Data[i+1] = Data[i];
    }

    // Insert
    Data[index] = value;
    Size++;

}
DATA_TYPE& operator[] (int index) const{
    return *this[index];
}

注意:使用私有变量:大小、容量、数据(存储动态数组) 我很确定我已经正确实现了 add 或 push_back 函数。问题是,当我尝试 cout 诸如“cout << a[1];”之类的内容时,我得到一个错误。

while compiling class template member function 'int &Vector<DATA_TYPE>::operator [](int) const'
      with
      [
          DATA_TYPE=int
      ]
see reference to class template instantiation 'Vector<DATA_TYPE>' being compiled
     with
     [
          DATA_TYPE=int
      ]
error C2440: 'return' : cannot convert from 'const Vector<DATA_TYPE>' to 'int &'
    with
     [
        DATA_TYPE=int
      ]
4

3 回答 3

5

你的应该有 2 个版本operator[]

const DATA_TYPE& operator[] (int index) const;
DATA_TYPE& operator[] (int index);

你所拥有的是两者的奇怪组合。

你也应该回来

return Data[index];

返回(*this)[index];将导致无限递归调用(好吧,不是无限的,在此之前你会得到一个stackoverflow)。

于 2012-10-09T15:28:27.200 回答
2

这里存在三个问题:

  1. 运算符优先级。*this[index]被解析为*(this[index]), 而你的意思是(*this)[index].
  2. 您正在从方法返回对数据的可变引用const
  3. 的定义operator[]是循环的。返回(*this)[index]operator[]导致无限递归。
于 2012-10-09T15:31:05.760 回答
1

operator[]函数被声明为常量,即它不能更改Vector对象中的任何内容。但是它返回一个引用,这意味着返回的值是可以修改的。这两者相互矛盾。

这可以通过const从函数末尾删除或不返回引用来解决。

于 2012-10-09T15:27:48.420 回答