我正在尝试实现一个通用(模板)双向链表,类似于C#.NET实现。
我想构建一个“捷径”方法来获取具有特定索引的元素,并决定使用下标运算符。我按照说明做了,并想出了类似的东西。
template <typename T>
class List
{
public:
T& operator[] (int index)
{
return iterator->GetCurrentValue(); //iterator is of type Iterator<T> and returns T&
}
};
然而,当我在我的代码中使用它时:
List<int>* myList = new List<int>();
...
int value=myList[i]; //i is int
我在最后一行收到编译错误:main.cpp:18: error: cannot convert 'List<int>' to 'int' in initialization
。
我试过它返回值,而不是引用,但仍然是同样的错误。
为什么将int
返回值解释为List<int>
?
我正在使用NetBeans和Cygwin gcc-c ++。
答案 0 :(得分:4)
为什么将
int
返回值解释为List<int>
?
不是。 myList
是指向List
的指针,它本身不是List
。您需要使用(*myList)[i]
。
在这种情况下你真的不太需要动态分配,所以我的建议是不使用指针,不要使用new
。