C++ 参考手册
- C++11
- C++14
- C++17
- C++20
- C++ 编译器支持情况表
- 独立与宿主实现
- C++ 语言
- C++ 关键词
- 预处理器
- C++ 标准库头文件
- 具名要求
- 功能特性测试 (C++20)
- 工具库
- std::apply
- 库特性测试宏 (C++20)
- 程序支持工具
- std::initializer_list
- 函数对象
- std::hash
- std::pair
- std::tuple
- std::optional
- std::any
- std::variant
- 格式化库 (C++20)
- std::integer_sequence
- std::exchange
- std::make_from_tuple
- std::launder
- std::to_chars
- std::from_chars
- std::as_const
- std::source_location
- 变参数函数
- std::bitset
- std::cmp_equal, cmp_not_equal, cmp_less, cmp_greater, cmp_less_equal, cmp_greater_equal
- std::in_range
- std::declval
- std::forward
- std::move
- std::move_if_noexcept
- std::chars_format
- std::piecewise_construct_t
- std::piecewise_construct
- std::in_place, std::in_place_type, std::in_place_index, std::in_place_t, std::in_place_type_t, std::in_place_index_t
- 注释
- 类型支持(基本类型、RTTI、类型特性)
- 概念库 (C++20)
- 错误处理
- 动态内存管理
- 日期和时间工具
- 字符串库
- 容器库
- 迭代器库
- 范围库 (C++20)
- 算法库
- 数值库
- 输入/输出库
- 文件系统库
- 本地化库
- 正则表达式库
- 原子操作库
- 线程支持库
- 实验性 C++ 特性
- 有用的资源
- 索引
- std 符号索引
- 协程支持 (C++20)
- C++ 关键词
std::source_location
定义于头文件 <source_location>
|
||
struct source_location; |
(C++20 起) | |
source_location
类表示关于源码的具体信息,例如文件名、行号以及函数名。以前,希望获得关于调用位置的信息(用于记录、测试或调试目的)的函数必须使用宏,以令如 __LINE__ 与 __FILE__ 的预定义宏于调用方的环境展开。 source_location
类提供更好的替代。
source_location
符合可默认构造 (DefaultConstructible) 、可复制构造 (CopyConstructible) 、可复制赋值 (CopyAssignable) 及可析构 (Destructible) 要求。 source_location
的左值符合可交换 (Swappable) 要求。
另外,下列条件为 true
:
- std::is_nothrow_move_constructible_v<std::source_location> 、
- std::is_nothrow_move_assignable_v<std::source_location> 及
- std::is_nothrow_swappable_v<std::source_location> 。
有意令 source_location
拥有较小的大小并且能高效复制。
source_location
的复制/移动构造函数与复制/移动赋值运算符是否为平凡和/或 constexpr 是未指明的。
成员函数
创建 | |
构造拥有实现定义的值的新 source_location (公开成员函数) | |
[静态] |
构造对应调用点位置的新 source_location (公开静态成员函数) |
域访问 | |
返回此对象所表示的行号 (公开成员函数) | |
返回此对象所表示的列号 (公开成员函数) | |
返回此对象所表示的文件名 (公开成员函数) | |
返回此对象表示的函数名,若它存在 (公开成员函数) |
示例
运行此代码
#include <iostream> #include <string_view> #include <source_location> void log(std::string_view message, const std::source_location& location = std::source_location::current()) { std::cout << "info:" << location.file_name() << ":" << location.line() << " " << message << '\n'; } int main() { log("Hello world!"); }
可能的输出:
info:main.cpp:15 Hello world!