std::experimental::source_location::column
来自 cppreference.com
< cpp | experimental | source location
constexpr std::uint_least32_t column() const noexcept; |
(库基础 TS v2) | |
返回一个实现定义的值,表示相对于此对象表示的行(即,列号)的开头的一些偏移量。
内容 |
[编辑] 参数
(无)
[编辑] 返回值
一个实现定义的值,表示相对于此对象表示的行(即,列号)的开头的一些偏移量。
[编辑] 示例
运行这段代码
#include <experimental/source_location> #include <iostream> template<typename T = std::experimental::source_location> inline void pos(const T& location = T::current()) { std::cout << "(" << location.line() << ':' << location.column() << ") "; } int main() { pos(); std::cout << "Proxima\n"; pos(); std::cout << "Centauri\n"; }
可能的输出
(17:5) Proxima (18:5) Centauri
[编辑] 另请参阅
返回此对象表示的行号 (公有成员函数) | |
返回此对象表示的文件名 (公有成员函数) | |
返回此对象表示的函数名称(如果有) (公有成员函数) | |
C++ 文档 for 文件名和行信息
|