标准库头文件 <source_location> (C++20)
来自 cppreference.com
此头文件是 实用程序 库的一部分。
类 | |
(C++20) |
一个表示源代码信息的类,例如文件名、行号和函数名 (class) |
[编辑] 概要
namespace std { struct source_location; }
[编辑] 类 std::source_location
namespace std { struct source_location { // source location construction static consteval source_location current() noexcept; constexpr source_location() noexcept; // source location field access constexpr uint_least32_t line() const noexcept; constexpr uint_least32_t column() const noexcept; constexpr const char* file_name() const noexcept; constexpr const char* function_name() const noexcept; private: uint_least32_t line_; // exposition only uint_least32_t column_; // exposition only const char* file_name_; // exposition only const char* function_name_; // exposition only }; }