std::match_results::ready
来自cppreference.com
< cpp | regex | match results
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
bool ready() const; |
(C++11 起) | |
本章尚未完成 |
[编辑] 返回值
表示如果比赛结果已经准备好(有效)或不.
原文:
Indicates if the match results are ready (valid) or not.
一个缺省构造的比赛结果始终是在“未就绪”状态,只能在准备就绪的正则表达式的算法之一。 “准备”状态,意味着所有的比赛结果已经完全建立起来.....
原文:
A default-constructed match result is always in an unready state, and can only be made ready by one of the regex algorithms. The ready state implies that all match results have been fully established.
调用成员函数的match_results对象,是没有“准备好”的结果是不确定的.
原文:
The result of calling most member functions of the match_results object that is not ready is undefined.