std::match_results<BidirIt,Alloc>::operator=
来自 cppreference.com
定义在头文件 <regex> 中 |
||
match_results& operator=( const match_results& other ); |
(1) | (自 C++11 起) |
match_results& operator=( match_results&& other ) noexcept; |
(2) | (自 C++11 起) |
分配内容。
1) 复制赋值运算符。分配 other 的内容。
2) 移动赋值运算符。使用移动语义分配 other 的内容。操作后,other 处于有效但未指定的狀態。
[编辑] 参数
other | - | 另一个匹配结果对象 |
[编辑] 返回值
*this
[编辑] 异常
1) 可能会抛出实现定义的异常。