void clear() noexcept;
概要
パスを空にする。
事後条件
empty() == true
例
#include <iostream>
#include <filesystem>
namespace fs = std::filesystem;
int main()
{
fs::path p = "/usr/bin/clang";
p.clear();
if (p.empty()) {
std::cout << "cleared" << std::endl;
}
}
15
#include <iostream>
#include <filesystem>
namespace fs = std::filesystem;
int main()
{
fs::path p = "/usr/bin/clang";
p.clear();
if (p.empty()) {
std::cout << "cleared" << std::endl;
}
}
出力
cleared
バージョン
言語
- C++17
処理系
- Clang:
- GCC: 8.1 ✅
- Visual C++: 2017 Update 7 ✅