作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
以下代码片段在调用 vector.erase(itr) 时偶尔转储核心。如果我在这里做错了什么,你能指出吗?
std::vector<Ntfy>::iterator itr = NtfyVector.begin();
for ( ; itr != NtfyVector.end(); )
{
if (certaion condition) {
itr = NtfyVector.erase(itr);
continue;
} else {
itr++;
}
}
以下是 GDB 跟踪:
(gdb) 在哪里
#0 0x000000000048cea5 in __gnu_cxx::new_allocator::destroy (this=0x7f0890, __p=0x7adbbf0) at /usr/lib/gcc/x86_64-redhat-linux/4.1.2/../../../../include/c++/4.1.2/ext/new_allocator.h:107
#1 0x000000000048da34 in std::vector >::erase (this=0x7f0890, __position={_M_current = 0x7adbc40}) at /usr/lib/gcc/x86_64-redhat-linux/4.1.2/../../../../include/c++/4.1.2/bits/vector.tcc:115
我正在使用 g++ (GCC) 4.4.7 20120313 (Red Hat 4.4.7-3)。
void NtfyHandle (void){
std::vector<Ntfy>::iterator itr = NtfyVector.begin();
for ( ; itr != NtfyVector.end(); )
{
PF_BOOL bRetry = PF_FALSE;
switch (itr->GetOperation()) {
case PF_SERVICE_ADD:
{
bRetry = LISwithState(itr->GetServiceName(), itr->GetNewState(), itr->GetInvokeId());
}
break;
case PF_SERVICE_REM:
{
liPsPlatform->SendInvokeResponse(itr->GetInvokeId(), PF_STATUS_SUCCESS);
}
break;
default: break;
}
if (PF_FALSE == bRetry) {
// Delete the notification from the vector since retry isn't required
itr = NtfyVector.erase(itr);
continue;
} else {
itr++;
}
}
最佳答案
似乎与给定循环无关,但 Ntfy::~Ntfy 析构函数可能有问题?顺便说一句,'erase-remove' 习惯用法允许有很多更整洁的代码。
关于c++ - 为什么循环中的 itr = vector.erase(itr) 导致内存损坏?我在这里做错了什么吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19920951/
我是一名优秀的程序员,十分优秀!