std::source_location::file_name

 
 
工具库
通用工具
日期和时间
函数对象
格式化库 (C++20)
(C++11)
关系运算符 (C++20 中弃用)
整数比较函数
(C++20)
swap 与类型运算
(C++14)
(C++11)
(C++11)
(C++11)
(C++17)
常用词汇类型
(C++11)
(C++17)
(C++17)
(C++17)
(C++17)

初等字符串转换
(C++17)
(C++17)
 
 
constexpr const char* file_name() const noexcept;
(C++20 起)

返回此对象所表示的当前源文件名,表示为空终止字节字符串。

参数

(无)

返回值

此对象所表示的当前源文件名,表示为空终止字节字符串。

示例

#if __has_include(<source_location>)
#include <source_location>
using std::source_location;
#elif __has_include(<experimental/source_location>)
#include <experimental/source_location>
using std::experimental::source_location;
#else
#error "<source_location> not found"
#endif
 
#include <iostream>
 
inline void print_this_file_name(
    const source_location& location = source_location::current())
{
    // 文件名含有此函数的调用点。
    std::cout << "File: " << location.file_name() << '\n';
}
 
auto main() -> int
{
    print_this_file_name();
}

可能的输出:

File: main.cpp

参阅

返回此对象所表示的行号
(公开成员函数)
返回此对象所表示的列号
(公开成员函数)
返回此对象表示的函数名,若它存在
(公开成员函数)