std::experimental::filesystem::path::assign
来自 cppreference.com
< cpp | experimental | fs | path
template< class Source > path& assign( const Source& source ); |
(1) | (文件系统 TS) |
template< class InputIt > path& assign( InputIt first, InputIt last ); |
(2) | (文件系统 TS) |
将内容分配给 path
对象。
1) 分配 source 的范围。
本节内容尚未完善 |
2) 分配由范围
[
first,
last)
标识的路径名。内容 |
[编辑] 参数
source | - | 要分配的范围 |
first, last | - | 要分配的范围 |
类型要求 | ||
-InputIt 必须满足 LegacyInputIterator 的要求。 | ||
-InputIt 的值类型必须是编码字符类型之一 (char, wchar_t, char16_t 和 char32_t). |
[编辑] 返回值
*this
[编辑] 异常
本节内容尚未完善 |
[编辑] 另请参见
分配另一个路径 (公有成员函数) |