std::experimental::source_location::line
来自cppreference.com
< cpp | experimental | source location
constexpr std::uint_least32_t line() const noexcept; |
(库基础 TS v2) | |
返回此对象所表示的行号。
参数
(无)
返回值
此对象所表示的行号。
示例
运行此代码
#include <experimental/source_location> #include <string_view> #include <iostream> using std::experimental::source_location; inline void cur_line( const std::string_view message = "", const source_location& location = source_location::current()) { std::cout << location.line() // <- 调用点的行号 << ") " << message; } auto main() -> int { cur_line("++" "\n"); cur_line(); std::cout << "Hello," "\n"; cur_line(); std::cout << "C++20!" "\n"; cur_line("--" "\n"); }
输出:
18) ++ 19) Hello, 20) C++20! 21) --
参阅
返回此对象所表示的列号 (公开成员函数) | |
返回此对象所表示的文件名 (公开成员函数) | |
返回此对象所表示的函数名,若它存在 (公开成员函数) |