constexpr bool empty() const noexcept; // C++17
[[nodiscard]] constexpr bool empty() const noexcept; // C++20
概要
文字列が空かどうかを判定する。
戻り値
return size() == 0;
例外
投げない
例
#include <cassert>
#include <string_view>
int main()
{
std::string_view sv1;
std::string_view sv2 = "Hello";
assert(sv1.empty());
assert(!sv2.empty());
}
xxxxxxxxxx
#include <cassert>
#include <string_view>
int main()
{
std::string_view sv1;
std::string_view sv2 = "Hello";
assert(sv1.empty());
assert(!sv2.empty());
}
出力
バージョン
言語
- C++17
処理系
- Clang: 4.0 ✅
- GCC: 7.1 ✅
- ICC: ??
- Visual C++: ??