我正在尝试以这种方式声明列表列表:
List_vector<List_vector<int> > multilist;
但是 Eclipse 强调了上述声明并给出了这个错误:
从这里需要
部分 List_vector 实现:
template<class T>
class List_vector: public Linear_list<T, int> {
public:
typedef typename Linear_list<T, int>::value_type value_type;
typedef typename Linear_list<T, int>::position position;
List_vector();
List_vector(int);
List_vector(const List_vector<T>&);
~List_vector();
private:
void change_dimension_(T*&, int, int);
value_type* elements_;
int length_; // the length of the list
int array_dimension_; // array's dimension
};
编译器输出:
g++ -O3 -Wall -c -fmessage-length=0 -o multilista.o "..\\multilista.cpp"
In file included from ..\multilista.cpp:1:0:
..\list_vector.h: In instantiation of 'List_vector<T>::~List_vector() [with T = List_vector<int>]':
..\multilista.cpp:16:32: required from here
..\list_vector.h:78:5: warning: deleting object of polymorphic class type List_vector<int>' which has non-virtual destructor might cause undefined behaviour [-Wdelete-non-virtual-dtor]
..\list_vector.h: In member function 'List_vector<T>::value_type List_vector<T>::read(List_vector<T>::position) const [with T = int; List_vector<T>::value_type = int; List_vector<T>::position = int]':
..\list_vector.h:136:1: warning: control reaches end of non-void function [-Wreturn-type]
..\list_vector.h: In member function 'List_vector<T>::value_type List_vector<T>::read(List_vector<T>::position) const [with T = List_vector<int>; List_vector<T>::value_type = List_vector<int>; List_vector<T>::position = int]':
..\list_vector.h:136:1: warning: control reaches end of non-void function [-Wreturn-type]
g++ -O3 -Wall -c -fmessage-length=0 -o tester.o "..\\tester.cpp"
g++ -o Lista.exe tester.o multilista.o