std::filesystem::swap(std::filesystem::path)
来自 cppreference.com
< cpp | filesystem | path
定义在头文件 <filesystem> 中 |
||
void swap( std::filesystem::path& lhs, std::filesystem::path& rhs ) noexcept; |
(自 C++17 起) | |
交换 lhs 与 rhs 的状态。实际上调用了 lhs.swap(rhs)。
[编辑] 参数
lhs, rhs | - | 要交换状态的路径 |
[编辑] 返回值
(无)
[编辑] 另请参阅
交换两个路径 (公有成员函数) |