1

我有一个指针列表作为类的成员。我实例化了该类,当列表为空时,size() 和 empty() 等各种函数会因段错误而失败。当我在列表中添加一些东西时,它们很好。我试图抽象出我对测试文件所做的事情,并且效果很好。这就是我认为当我的代码失败时我正在做的事情(尽管显然不是):

#include <list>
#include <iostream>

class Test {
  int i;
};

int main() {
  std::list<Test*> tlist;

  if (tlist.empty()) {
    std::cout << "List empty";
  } else {
    std::cout << "List not empty";
  }
}

我不能真正发布导致问题的整个代码列表,因为它相当大并且包含一堆文件,但会尝试直接从代码中粘贴所有相关位:

player.h 中的类声明:

class Player : public ScreenObject {
private:
    std::list<Thing*> inventory;

构造函数中没有对该列表执行任何操作。

失败的地方:

主.cpp:

Player pc(iname, w_choice, c_choice, 11, 11, WHITE, '@');

……

if (pc.addToInv(t)) {
    currentLevel.delObject(id);
}

……

播放器.cpp:

int Player::addToInv(Thing& t) {
    if (inventory.size() <= 52) {
        inventory.push_back(&t);
    } else {
        shiplog("Cannot add to inventory, 52 item limit reached",10);
        return 0;
    }
}

使用 gdb 运行它时出现的错误发生在对 size() 的调用上,并在此处结束:

Program received signal SIGSEGV, Segmentation fault.
0x0804eda6 in std::_List_const_iterator<Thing*>::operator++ (this=0xbfff9500)
at /usr/include/c++/4.4/bits/stl_list.h:223
223            _M_node = _M_node->_M_next;

任何猜测都非常感谢!


完整的回溯是:

(gdb) bt
 0  0x0804e28a in std::_List_const_iterator<Thing*>::operator++ (
    this=0xbfff9500) at /usr/include/c++/4.4/bits/stl_list.h:223
 1  0x0804e64e in std::__distance<std::_List_const_iterator<Thing*> > (
    __first=..., __last=...)
    at /usr/include/c++/4.4/bits/stl_iterator_base_funcs.h:79
 2  0x0804e4d3 in std::distance<std::_List_const_iterator<Thing*> > (
    __first=..., __last=...)
    at /usr/include/c++/4.4/bits/stl_iterator_base_funcs.h:114
 3  0x0804e2e6 in std::list<Thing*, std::allocator<Thing*> >::size (
    this=0xbffff244) at /usr/include/c++/4.4/bits/stl_list.h:805
 4  0x0804df78 in Player::addToInv (this=0xbffff068, t=...) at player.cpp:551
 5  0x0804a873 in main (argc=1, argv=0xbffff494) at main.cpp:182
4

1 回答 1

1
int Player::addToInv(Thing& t) {
if (inventory.size() <= 52) {
    inventory.push_back(&t);
} else {
    shiplog("Cannot add to inventory, 52 item limit reached",10);
    return 0;
}

}

事物是通过引用传递的,但随后它的地址被传递给inventory.push_back()。尝试只传递't'。

于 2013-02-15T17:47:09.433 回答