作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在编写一个简单的程序,它使用了 std::map::erase
.
该程序很好,但有一些我不明白的地方。
如果我传给 erase
function 第一个迭代器超出第二个迭代器的间隔,该函数不会删除任何内容。这很好。
另一方面,如果我使用 std::distance
第一个迭代器超出第二个迭代器,此函数“失败”。我知道这是由于 map 迭代器的性质,例如 std::vector
没有这个问题。
但我不明白如何map::erase
可以知道区间是否有效。
最佳答案
来自 std::distance
's specification :
The behavior is undefined if last is not reachable from first by(possibly repeatedly) incrementing first.
std::map
的
erase()
方法似乎也表明
this is undefined behavior, too :
- Removes the elements in the range [first; last), which must be avalid range in *this.
erase()
和
std::distance
在这种情况下导致未定义的行为。
关于c++ - map::erase 如何知道间隔是否有效?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65928514/
我是一名优秀的程序员,十分优秀!