gpt4 book ai didi

c++ - 是否可以使用超出范围的 RA 迭代器?

转载 作者:太空宇宙 更新时间:2023-11-04 15:10:49 26 4
gpt4 key购买 nike

考虑以下代码:

typedef std::vector<int> cont_t; // Any container with RA-iterators
typedef cont_t::const_iterator citer_t; // Random access iterator

cont_t v(100);
const int start = 15; // start > 0.
citer_t it = v.begin() - start; // Do not use *it

int a1 = 20, b1 = 30; // a1, b1 >= start
int a2 = 30, b2 = 40; // a2, b2 >= start

int x = std::min_element(it + a1, it + b1); //
int y = std::min_element(it + a2, it + b2); //
int z = std::min_element(it + 15, it + 25); //
...

是否可以使用随机访问迭代器超出范围?

最佳答案

编写尝试使用超出范围的迭代器的代码当然是可能的。运行代码将给出未定义的行为。根据库的实现,它可能会引发异常、访问内存的随机位、触发保护错误或在您的 CPU 中引发热核爆炸。

关于c++ - 是否可以使用超出范围的 RA 迭代器?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1770471/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com