std::source_location::column
来自 cppreference.com
< cpp | utility | source location
constexpr std::uint_least32_t column() const noexcept; |
(自 C++20 起) | |
返回一个实现定义的值,表示此对象表示的行(即列号)的开始位置的一些偏移量。列号假定为 1 索引。
内容 |
[编辑] 参数
(无)
[编辑] 返回值
一个实现定义的值,表示此对象表示的行(即列号)的开始位置的一些偏移量。
鼓励实现使用0
表示未知的列号。
[编辑] 示例
运行此代码
#include <iostream> #include <source_location> template<typename T = std::source_location> inline void pos(const T& location = T::current()) { std::cout << "(" << location.line() << ':' << location.column() << ") "; } int main() { // ↓: column #9 pos(); std::cout << "Proxima\n"; // row #18 pos(); std::cout << "Centauri\n"; // row #19 // ↑: column #11 }
可能的输出
(18:9) Proxima (19:11) Centauri
[编辑] 另请参阅
返回此对象表示的行号 (公共成员函数) | |
返回此对象表示的文件名 (公共成员函数) | |
返回此对象表示的函数的名称(如果有) (公共成员函数) | |
文件名和行信息 |