std::to_string
来自cppreference.com
< cpp | utility | basic stacktrace
定义于头文件 <stacktrace>
|
||
template< class Allocator > std::string to_string( const std::basic_stacktrace<Allocator>& st ); |
(C++23 起) | |
返回带有 st
的描述的字符串。
basic_stacktrace
的描述常含有其条目的描述,尽管不要求描述的行数等于 size()
。
参数
st | - | 要返回其描述的 basic_stacktrace
|
返回值
带有 st
的描述的字符串。
异常
可能抛出实现定义的异常。
注解
不提供对此函数的定制分配器支持,因为实现通常要求平台特定的分配、系统调用和大量 CPU 集中工作,而定制分配器不会对此函数提供便利,因为平台特定的操作耗费的时间数量级多于分配。
示例
运行此代码
#include <stacktrace> #include <string> #include <iostream> int main() { auto trace = std::stacktrace::current(); std::cout << std::to_string(trace) << '\n'; }
可能的输出:
0# 0x0000000000402D97 in ./prog.exe 1# __libc_start_main in /lib/x86_64-linux-gnu/libc.so.6 2# 0x0000000000402CA9 in ./prog.exe
参阅
(C++23) |
返回拥有 stacktrace_entry 的描述的字符串 (函数) |