【发布时间】:2014-11-17 04:38:38
【问题描述】:
我想知道将string 设置为等于通过取消引用strings 的vector 的未结束的iterator 返回的值是否“安全”。当我运行程序时
#include <vector>
#include <string>
int main()
{
std::vector<std::string> myVec;
std::cout << *myVec.end();
return 0;
}
我收到以下错误。
/usr/local/lib/gcc/i686-pc-linux-gnu/4.1.2/../../../../include/c++/4.1.2/debug/safe_iterator.h:181:
error: attempt to dereference a past-the-end iterator.
Objects involved in the operation:
iterator "this" @ 0x0xffdb6088 {
type = N11__gnu_debug14_Safe_iteratorIN9__gnu_cxx17__normal_iteratorIPSsN10__gnu_norm6vectorISsSaISsEEEEEN15__gnu_debug_def6vectorISsS6_EEEE (mutable iterator);
state = past-the-end;
references sequence with type `N15__gnu_debug_def6vectorISsSaISsEEE' @ 0x0xffdb6088
}
Disallowed system call: SYS_kill
您可以在http://codepad.org/fJA2yM30查看它
我想知道这一切的原因是因为我的代码中有一个类似的 sn-p
std::vector<const std::string>::iterator iter(substrings.begin()), offend(substrings.end());
while (true)
{
this_string = *iter;
if (_programParams.count(this_string) > 0)
{
this_string = *++iter;
如果++iter 等于offend,我想确保不会发生奇怪的事情。
【问题讨论】:
-
“我想确保不会发生奇怪的事情” -- 任何事情都可能发生,包括你可能称之为奇怪的事情。它取决于编译器、架构和/或标准库实现。
标签: c++