程序在list.clear()的有时候会core down,具体的信息如下:
(gdb) where
#0 0xc019698c in _sigfillset+0xb4c () from /lib/libc.2
#1 0xc0199530 in free+0x180 () from /lib/libc.2
#2 0xc0324594 in operator delete+0x30 () from /lib/libCsup.2
#3 0x15d04 in basic_string;,allocator>;::unLink+0xb0 ()
#4 0xa192c in CPrepay_2::~CPrepay_2 (this=0x40111c40, #free=2) at ../include/...
by
zhf3690
-
C/C++
-
2005-07-05 17:22:05 阅读(7205) 回复(3)
因为list不是连续存储的,和vector不一样,迭代器不能这样用
#include <list>
using namespace std;
main()
{
int ia[7]={0,1,2,3,4,5,6};
list ilist(ia+4,ia+6);}
可是我看c++premier page224,练习6.10,答案说这种用法是对的。疑惑ing
by
declare
-
C/C++
-
2007-11-08 00:39:29 阅读(15533) 回复(8)