我已经从节点中创建了一个双向链表。我正在使用 STL。我在operator++
函数中遇到错误。这是我的Iterator<T>
课。
#include "Node.h"
#include <iostream>
using namespace std;
template<class T> class Iterator{
public:
Iterator();
~Iterator();
Node<T> *node;
void operator++(Iterator<T> val);
void operator--();
T operator*();
private:
};
template<class T>
Iterator<T>::Iterator(){
node = 0;
}
template<class T>
Iterator<T>::~Iterator(){
}
template<class T>
void Iterator<T>::operator++(Iterator<T> val){
if(node != 0){
node = node->next;
}
}
template<class T>
void Iterator<T>::operator--(){
if(node != 0)
node = node->prev;
}
template<class T>
T Iterator<T>::operator*(){
if(node == 0){
cout << "Node no exists!";
}
else{
return node->value;
}
}
我的main
功能也收到警告。
#include <iostream>
#include "List.h"
using namespace std;
int main()
{
List<int> mylist;
for(int i = 2; i < 10; i++){
mylist.push_back(i);
}
Iterator<int> it = mylist.begin();
while(it.node->next != 0){
cout << it.node->value << "\n";
it++;
}
mylist.pop_front();
cout << mylist.front() << ", ";
cout << mylist.back();
return 0;
}
错误和警告
F:\New folder\C++\Lab14\Iterator.h||在'class Iterator'的实例化中:|
F:\New 文件夹\C++\Lab14\main.cpp|15|从这里需要|
F:\New folder\C++\Lab14\Iterator.h|29|error: postfix 'void Iterator::operator++ (Iterator) [with T = int]' must take 'int' 作为它的参数|
F:\新建文件夹\C++\Lab14\main.cpp||在函数'int main()'中:|
F:\New 文件夹\C++\Lab14\main.cpp|19|错误:没有为后缀“++”声明的“operator++(int)”[-fpermissive]|
顺便说一句,我也计划对其他运营商做同样的事情。operator*
不是用于乘法。