命名空间
变体
操作

std::experimental::source_location::column

来自 cppreference.com
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 文件名和行信息