命名空间
变体
操作

std::basic_stacktrace<Allocator>::begin, std::basic_stacktrace<Allocator>::cbegin

来自 cppreference.com
 
 
 
 
const_iterator begin()  const noexcept;
(1) (自 C++23 起)
const_iterator cbegin() const noexcept;
(2) (自 C++23 起)

返回指向 basic_stacktrace 的第一个条目的迭代器。

如果 basic_stacktrace 为空,则返回的迭代器等于 end()

range-begin-end.svg

内容

[编辑] 参数

(无)

[编辑] 返回值

指向第一个条目的迭代器。

[编辑] 复杂度

常数。

[编辑] 示例

#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.

[编辑] 另请参阅

返回指向末尾的迭代器
(公有成员函数) [编辑]