以下代码引发运行时错误:

#include <iostream>
#include <iterator>
#include <ext/slist>

class IntList :  public __gnu_cxx::slist<int> {
public:
    IntList() { tail_ = begin(); } // seems that there is a problem here
    void append(const int node) { tail_ = insert_after(tail_, node); }

private:
    iterator tail_;
};

int main() {
    IntList list;

    list.append(1);
    list.append(2);
    list.append(3);

    for (IntList::iterator i = list.begin(); i != list.end(); ++i) {
        std::cout << *i << " ";
    }

    return 0;
}

似乎问题出在构造函数IntList()中。是因为它调用了成员函数begin()吗?

最佳答案

看起来您要在end()之后插入;

在构造函数的主体中

IntList() { tail_ = begin(); }

基类被构造并且它的成员可以被调用,但是对于一个空列表,它应该返回end();

10-08 12:41