- regex[meta header]
- std[meta namespace]
- match_results[meta class]
- function[meta id-type]
- cpp11[meta cpp]
bool empty() const; // (1) C++11
[[nodiscard]] bool empty() const; // (1) C++20
bool empty() const; // (1) C++26*this が空か否か(つまり、マッチが失敗したか否か)を返す。
size() == 0
regex_match、および、regex_searchの引数に渡したmatch_resultsオブジェクトは、マッチが成功するとempty() != trueとなる。
match_resultsオブジェクトの結果が利用可能か否かを確認する場合にはreadyを使用すると良い。regex_iteratorを間接参照して得られるmatch_resultsオブジェクトは、必ずempty() != trueとなる。empty() == trueの場合、match_resultsのメンバ関数には結果が未規定であるものがあるので、注意が必要である(regex_match、および、regex_searchを参照)。- 本メンバ関数は
ready() == falseでも呼び出すことが可能である(その場合、trueが返される)。
#include <iostream>
#include <regex>
int main()
{
const char s1[] = " abc ";
const char s2[] = " 012 ";
const std::regex re("\\d+");
std::cmatch m;
// regex_search 実行前
std::cout << std::boolalpha << "ready = " << m.ready() << ", empty = " << m.empty() << std::endl;
// regex_search 実行後(マッチ失敗)
if (std::regex_search(s1, m, re)) {
std::cout << "match:ready = " << m.ready() << ", empty = " << m.empty() << std::endl;
} else {
std::cout << "not match:ready = " << m.ready() << ", empty = " << m.empty() << std::endl;
}
// regex_search 実行後(マッチ成功)
if (std::regex_search(s2, m, re)) {
std::cout << "match:ready = " << m.ready() << ", empty = " << m.empty() << std::endl;
} else {
std::cout << "not match:ready = " << m.ready() << ", empty = " << m.empty() << std::endl;
}
}- empty()[color ff0000]
- std::regex[link ../basic_regex.md]
- std::cmatch[link ../match_results.md]
- std::regex_search[link ../regex_search.md]
- m.ready()[link ready.md]
ready = false, empty = true
not match:ready = true, empty = true
match:ready = true, empty = false
- C++11
- Clang: 3.0 [mark verified], 3.1 [mark verified], 3.2 [mark verified], 3.3 [mark verified], 3.4 [mark verified], 3.5 [mark verified], 3.6 [mark verified]
- GCC: 4.9.0 [mark verified], 4.9.1 [mark verified], 5.0.0 [mark verified]
- ICC: ??
- Visual C++: ??
- P0600R1
[[nodiscard]]in the Library- C++20で
[[nodiscard]]が付加された
- C++20で
- P2422R1 Remove
nodiscardannotations from the standard library specification- C++26で
[[nodiscard]]指定が削除された
- C++26で