如何检查 STL 迭代器是否指向任何东西?
可能重复:
C++ 检查迭代器是否有效的最佳方法一个>
我想做这样的事情:
std::vector<int>::iterator it;
// /cut/ search for something in vector and point iterator at it.
if(!it) //check whether found
do_something();
但是没有运算符!对于迭代器.如何检查迭代器是否指向任何东西?
But there is no operator! for iterators. How can I check whether iterator points at anything?
推荐答案
你不能.通常的习惯用法是使用容器的结束迭代器作为未找到"标记.这就是 std::find
返回的内容.
You can't. The usual idiom is to use the container's end iterator as a 'not found' marker. This is what std::find
returns.
std::vector<int>::iterator i = std::find(v.begin(), v.end(), 13);
if (i != v.end())
{
// ...
}
对未赋值的迭代器唯一能做的就是给它赋值.
The only thing you can do with an unassigned iterator is assign a value to it.
相关文章