std::experimental::reflect::get_source_line
来自 cppreference.com
< cpp | experimental | reflect
定义在头文件 <experimental/reflect> 中 |
||
template< Object T > struct get_source_line; |
(反射 TS) | |
提供成员常量 value
,等于 T
所反映的实体或 typedef-name 的声明的 假定行号。
内容 |
[编辑] 辅助变量模板
template< class T > constexpr auto get_source_line_v = get_source_line<T>::value; |
(反射 TS) | |
从 std::integral_constant 继承而来
成员常量
value [静态] |
T 所反映的实体或 typedef-name 的声明的假定行号(公有静态成员常量) |
成员函数
operator std::uint_least32_t |
将对象转换为 std::uint_least32_t,返回 value (公有成员函数) |
operator() (C++14) |
返回 value (公有成员函数) |
成员类型
类型 | 定义 |
value_type
|
std::uint_least32_t |
type
|
std::integral_constant<std::uint_least32_t, value> |
[编辑] 示例
以下代码显示了对象或类的源代码行。
运行此代码
输出
6 7
[编辑] 参见
返回此对象表示的行号 ( std::source_location 的公有成员函数) | |
(C++23) |
获取与 stacktrace_entry 所表示的评估在词法上相关的行号( std::stacktrace_entry 的公有成员函数) |