std::experimental::source_location::function_name
来自 cppreference.com
< cpp | experimental | source location
constexpr const char* function_name() const noexcept; |
(库基础 TS v2) | |
如果存在,则返回与此对象表示的位置关联的函数的名称。
内容 |
[编辑] 参数
(无)
[编辑] 返回值
如果此对象表示函数主体中的位置,则返回与函数名称相对应的实现定义的以 null 结尾的字节字符串。
否则,返回空字符串。
[编辑] 示例
以下示例展示了如何使用 std::source_location::function_name()
打印函数、构造函数、析构函数或重载的 operator()
的名称。
运行此代码
#include <experimental/source_location> #include <iostream> #include <string_view> inline void function_name( const std::string_view signature = "()", const std::experimental::source_location& location = std::experimental::source_location::current()) { std::cout << location.function_name() // <- name of the caller! << signature << '\n'; } void foo() { function_name(); } struct S { S() { function_name(); } S(int) { function_name("(int)"); } S& operator=(S const&) { function_name("(const S&)"); return *this; } S& operator=(S&&) { function_name("(S&&)"); return *this; } ~S() { function_name(); } }; int main() { foo(); S p; S q{42}; p = q; p = std::move(q); }
可能的输出
foo() S() S(int) operator=(const S&) operator=(S&&) ~S() ~S()
[编辑] 另请参阅
返回此对象表示的行号 (公有成员函数) | |
返回此对象表示的列号 (公有成员函数) | |
返回此对象表示的文件名 (公有成员函数) | |
C++ 文档 for 文件名和行信息
|