std::experimental::filesystem::path::assign
来自 cppreference.cn
< 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
[编辑] 异常
本节不完整 |
[编辑] 另请参阅
赋值另一个路径 (公共成员函数) |