gpt4 book ai didi

c++ - 定义模板类、运算符和迭代器的麻烦

转载 作者:行者123 更新时间:2023-11-30 02:55:58 27 4
gpt4 key购买 nike

所以我试图定义一个模板类“TwoWayVector”和“TwoWayVectorIterator”,但我遇到了很多问题。我想在 TwoWayVector 中定义 == 以返回一个引用并将一个 const TwoWayVector 作为参数,这就是我定义其他运算符的方式并且 g++ 没有提示,但由于某种原因,下面的代码产生了错误

TwoWayVector.cc: In member function ‘bool& TwoWayVector<T>::operator==(TwoWayVector<T>)         [with T = int]’:
Test.cc:10: instantiated from here
TwoWayVector.cc:40: error: passing ‘const TwoWayVector<int>’ as ‘this’ argument of ‘T& TwoWayVector<T>::operator[](int) [with T = int]’ discards qualifiers
Test.cc:10: instantiated from here
TwoWayVector.cc:32: warning: reference to local variable ‘result’ returned

测试.cc

#include <iostream>
#include "TwoWayVector.cc"
int main(){
TwoWayVector<int> numbers;
TwoWayVector<int> numbers2;
numbers.push_back(3);
numbers.push_back(2);
numbers2.push_back(3);
numbers2.push_back(2);
cout << (numbers==numbers2);
cout << endl;
return 0;
}

TwoWayVector.cc

using namespace std;
#include "TwoWayVectorIterator.cc"
template <class T> class TwoWayVector{
public:

T* data;
int capacity;
int nextFree;

TwoWayVector(){
capacity = 10;
nextFree = 0;
data = new T[capacity];
}

~TwoWayVector(){
delete data;
}

T& operator[](const int index){
if( index >= capacity || capacity + index < 0){
string number = static_cast<ostringstream*>( &(ostringstream() << index) )->str();
string error = "index " + number + " is out of bounds";
throw error;
}
else if(index < 0){
return data[nextFree+index];
}
return data[index];
}
bool& operator==(const TwoWayVector vector2){
bool result = true;
if(capacity != vector2.capacity){
result = false;
}
if(nextFree != vector2.nextFree){
result = false;
}
for(int i=0; i<nextFree ; i++){
if(data[i] != vector2[i]){
result = false;
}
}
return result;
}
//memory leaks?
void push_back(T object){
if(capacity <= nextFree){
capacity = capacity*2;
T* tmp = new T[capacity];
for(int i=0; i<capacity; i++){
tmp[i] = data[i];
}
delete data;
data = tmp;
}
data[nextFree] = object;
nextFree++;
}

T pop_back(){
nextFree--;
T result = data[nextFree];
data[nextFree] = NULL;
return result;
}

int size(){
return nextFree;
}

TwoWayVectorIterator<T>* begin(){
TwoWayVectorIterator<T>* i = new TwoWayVectorIterator<T>(0,this);
return (i);
}
TwoWayVectorIterator<T>* end(){
TwoWayVectorIterator<T>* i = new TwoWayVectorIterator<T>(nextFree,this);
return(i);
}

};

TwoWayVectorIterator.cc

#include <sstream>

using namespace std;

template<typename T> class TwoWayVector;

template <class T> class TwoWayVectorIterator{
public:
TwoWayVector<T>* vector;
int currentPosition;
TwoWayVectorIterator(TwoWayVector<T>& vec){
currentPosition = 0;
vector = vec;
}
TwoWayVectorIterator( int pos , TwoWayVector<T>* vec){
currentPosition = pos;
vector = vec;
}

bool& operator==(const TwoWayVectorIterator vector2){
bool contents, position;
contents = (vector == vector2) ? true : false;
position =(currentPosition == vector2->currentPosition) ? true : false;
return (contents && position);
}

bool& operator!=(const TwoWayVectorIterator vector2){
bool contents, position;
contents = (vector == vector2) ? false : true;
position=(currentPosition == vector2->currentPosition) ? false : true;
return (contents || position);
}

TwoWayVectorIterator& operator++(){
return *this;
currentPosition = (currentPosition+1);

}
TwoWayVectorIterator& operator++(int){
currentPosition = (currentPosition+1);
return *this;
}
TwoWayVectorIterator& operator=(TwoWayVectorIterator* vector2){
&vector = vector2;
currentPosition = vector2->currentPosition;
return *this;
}
TwoWayVectorIterator& operator+(int n){
currentPosition = currentPosition+n;
return *this;
}
TwoWayVectorIterator& operator-(int n){
currentPosition = currentPosition-n;
return *this;
}
bool& operator<(TwoWayVectorIterator* vector2){
return (currentPosition<vector2->currentPosition);
}
T& operator*(){
return vector[currentPosition];
}
};

如果我将 TwoWayVector.cc 中的 == 运算符定义更改为

bool operator==(TwoWayVector vector2){
bool result = true;
if(capacity != vector2.capacity){
result = false;
}
if(nextFree != vector2.nextFree){
result = false;
}
for(int i=0; i<nextFree ; i++){
if(data[i] != vector2[i]){
result = false;
}
}
return result;
}

然后一切都编译好了,但是当我运行它时我得到了

1
a.out(40908) malloc: *** error for object 0x7fe4f2c03b40: pointer being freed was not allocated
*** set a breakpoint in malloc_error_break to debug
Abort trap: 6

有什么想法吗?

最佳答案

operator== 中,您调用 operator[],它是非常量,在常量变量 vector2 上。

您应该添加一个可选的只读版本的运算符:

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

但是你应该像这样使用对象参数的引用:

bool operator==(const TwoWayVector &vector2) const;

否则,const 关键字实际上并没有多大作用,因为它只是表示无法修改刚刚在堆栈上为函数创建的对象拷贝,而这并没有真的很重要。 (因此,解决此问题的最简单方法是从 vector2 中删除 const 关键字,但它并不完全正确。)

当然,不要将 bool 值作为引用返回,因为它引用变量 result,一旦您离开该函数,该变量将不再存在。

关于c++ - 定义模板类、运算符和迭代器的麻烦,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15993320/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com