定义于头文件
<regex>
|
||
template< class BidirIt, class Alloc >
bool operator==( match_results<BidirIt,Alloc>& lhs, |
(1) | (C++11 起) |
template< class BidirIt, class Alloc >
bool operator!=( match_results<BidirIt,Alloc>& lhs, |
(2) | (C++11 起) |
比较二个 match_results
对象。
若满足下列条件则二个 match_results
相等:
lhs
与 rhs 是否相等。lhs
与 rhs 是否不相等。目录 |
lhs, rhs | - | 要比较的 match_results |
类型要求 | ||
-
BidirIt 必须满足 BidirectionalIterator 的要求。
|
||
-
Alloc 必须满足 Allocator 的要求。
|
lhs
与 rhs
相等则为 true ,否则为 false 。lhs
与 rhs
不相等则为 true ,否则为 false 。(无)
本节未完成 原因:暂无示例 |