y3c-stl 0.3.3
Friendly C++ STL wrapper with automatic stacktrace
Loading...
Searching...
No Matches
vector-iter.cc

‍example output:

y3c-stl terminated: undefined behavior detected (ub_iter_after_end)
at y3c::vector<int>::iterator::operator+=(): iterated over the end() of container.
Stack trace (most recent call first):
#0 0x0000562be636d755 in main at /home/runner/work/y3c-stl/y3c-stl/build/../examples/vector-iter.cc:7:11
5: y3c::vector<int> a = {1, 2, 3, 4, 5};
6: y3c::vector<int>::iterator it = a.begin();
7: it += 10;
8: std::cout << *it << std::endl;
9: }
array, vector など各種コンテナのイテレータ
Definition iterator.h:26
contiguous_iterator & operator+=(std::ptrdiff_t n)
Definition iterator.h:156
Definition array.h:8
#include <y3c/vector>
#include <iostream>
int main() {
y3c::vector<int> a = {1, 2, 3, 4, 5};
it += 10;
std::cout << *it << std::endl;
}
可変長配列 (std::vector)
Definition vector.h:23
iterator begin()
先頭要素を指すイテレータを取得
Definition vector.h:673