std::filesystem::path::generic_string, std::filesystem::path::generic_wstring, std::filesystem::path::generic_u8string, std::filesystem::path::generic_u16string, std::filesystem::path::generic_u32string
来自 cppreference.com
< cpp | filesystem | path
template< class CharT, class Traits = std::char_traits<CharT>, class Alloc = std::allocator<CharT> > |
(1) | (自 C++17 起) |
(2) | (自 C++17 起) | |
std::string generic_string() const; |
||
std::wstring generic_wstring() const; |
||
std::u16string generic_u16string() const; |
||
std::u32string generic_u32string() const; |
||
(3) | ||
std::string generic_u8string() const; |
(自 C++17 起) (直到 C++20) |
|
std::u8string generic_u8string() const; |
(自 C++20 起) | |
返回以通用路径格式表示的内部路径名,并将其转换为指定的字符串类型。转换(如果有)按如下方式指定:
- 如果
path::value_type
是 char,转换(如果有)是系统相关的。这在典型的 POSIX 系统(如 Linux)上是这种情况,其中本机编码为 UTF-8,并且string()
不执行任何转换。 - 否则,如果
path::value_type
是 wchar_t,转换(如果有)是未指定的。这在 Windows 上是这种情况,其中 wchar_t 为 16 位,本机编码为 UTF-16。 - 否则,如果
path::value_type
是 char16_t,本机编码为 UTF-16,转换方法未指定。 - 否则,如果
path::value_type
是 char32_t,本机编码为 UTF-32,转换方法未指定。 - 否则,如果
path::value_type
是 char8_t,本机编码为 UTF-8,转换方法未指定。
/
字符用作目录分隔符。
1) 所有内存分配都由 a 执行。
3) 在
u8string()
的情况下,结果编码始终为 UTF-8。内容 |
[编辑] 参数
a | - | 用于构造字符串的分配器 |
类型要求 | ||
-CharT 必须是编码字符类型之一(char,wchar_t, char8_t(自 C++20 起),char16_t 和 char32_t)。 |
[编辑] 返回值
以通用路径格式表示的内部路径名,并将其转换为指定的字符串类型。
[编辑] 异常
可能会引发实现定义的异常。
[编辑] 示例
运行此代码
#include <cstddef> #include <filesystem> #include <iomanip> #include <iostream> #include <span> #include <string_view> void print(std::string_view rem, auto const& str) { std::cout << rem << std::hex << std::uppercase << std::setfill('0'); for (const auto b : std::as_bytes(std::span{str})) std::cout << std::setw(2) << std::to_integer<unsigned>(b) << ' '; std::cout << '\n'; } int main() { std::filesystem::path p{"/家/屋"}; std::cout << p << '\n'; print("string : ", p.generic_string()); print("u8string : ", p.generic_u8string()); print("u16string : ", p.generic_u16string()); print("u32string : ", p.generic_u32string()); print("wstring : ", p.generic_wstring()); }
可能的输出
"/家/屋" string : 2F E5 AE B6 2F E5 B1 8B u8string : 2F E5 AE B6 2F E5 B1 8B u16string : 2F 00 B6 5B 2F 00 4B 5C u32string : 2F 00 00 00 B6 5B 00 00 2F 00 00 00 4B 5C 00 00 wstring : 2F 00 00 00 B6 5B 00 00 2F 00 00 00 4B 5C 00 00
[编辑] 另请参阅
返回以本机路径格式表示的路径,并将其转换为字符串 (公共成员函数) |