std::operator<<(std::stacktrace_entry)

来自cppreference.com
 
 
工具库
通用工具
格式化库 (C++20)
(C++11)
关系运算符 (C++20 中弃用)
整数比较函数
(C++20)(C++20)(C++20)
(C++20)
swap 与类型运算
(C++14)
(C++11)
(C++11)
(C++11)
(C++17)
常用词汇类型
(C++11)
(C++17)
(C++17)
(C++17)
(C++11)
(C++17)

初等字符串转换
(C++17)
(C++17)
栈踪
 
 
定义于头文件 <stacktrace>
template< class CharT, class Traits >

std::basic_ostream<CharT, Traits>&

    operator<<( std::basic_ostream<CharT, Traits>& os, const std::stacktrace_entry& f );
(C++23 起)

插入 f 的描述到输出流 os 中。等价于 return os << std::to_string(f);

参数

os - 输出流
f - 要插入其描述的 stacktrace_entry

返回值

os

异常

可能抛出实现定义的异常。

注解

由于 std::string 只能由 std::ostream 输出(例如不能由 std::wostream ),这等效地要求 os 的类型为 std::ostream&

示例

#include <stacktrace>
#include <iostream>
 
int main()
{
    for (const auto &f : std::stacktrace::current())
        std::cout << f << '\n';
}

可能的输出:

0x0000000000402AA7 in ./prog.exe
__libc_start_main in /lib/x86_64-linux-gnu/libc.so.6
0x00000000004029B9 in ./prog.exe

参阅

进行 basic_stracktrace 的流输出
(函数模板)