namespace std::filesystem {
bool operator!=(const path& lhs, const path& rhs) noexcept;
}
概要
非等値比較を行う
戻り値
return !(lhs == rhs);
例
出力
バージョン
言語
- C++17
処理系
- Clang:
- GCC: 8.1
- Visual C++: 2017 Update 7
namespace std::filesystem {
bool operator!=(const path& lhs, const path& rhs) noexcept;
}
非等値比較を行う
return !(lhs == rhs);