std::basic_stacktrace<Allocator>::end, std::basic_stacktrace<Allocator>::cend
来自 cppreference.com
< cpp | utility | basic stacktrace
const_iterator end() const noexcept; |
(1) | (自 C++23 起) |
const_iterator cend() const noexcept; |
(2) | (自 C++23 起) |
返回指向 basic_stacktrace
的最后一个条目之后的迭代器。
此迭代器充当占位符;尝试取消引用它会导致未定义的行为。
内容 |
[编辑] 参数
(无)
[编辑] 返回值
结束迭代器。
[编辑] 复杂度
常数。
[编辑] 示例
运行此代码
#include <algorithm> #include <iostream> #include <stacktrace> int main() { auto trace = std::stacktrace::current(); auto empty_trace = std::stacktrace{}; // Print stacktrace. std::for_each(trace.begin(), trace.end(), [](const auto& f) { std::cout << f << '\n'; }); if (empty_trace.begin() == empty_trace.end()) std::cout << "stacktrace 'empty_trace' is indeed empty.\n"; }
可能输出
0x0000000000402BA8 in ./prog.exe __libc_start_main in /lib/x86_64-linux-gnu/libc.so.6 0x0000000000402A29 in ./prog.exe stacktrace 'empty_trace' is indeed empty.
[编辑] 另请参阅
返回指向开头的迭代器 (public member function) |