CppDS.com

C++ 98 11 14 17 20 手册

std::match_results<BidirIt,Alloc>::match_results

来自cppreference.com
< cpp‎ | regex‎ | match results
match_results() : match_results(Allocator()) { }
(1) (C++11 起)
explicit match_results( const Allocator& a );
(2) (C++11 起)
match_results( const match_results& rhs );
(3) (C++11 起)
match_results( match_results&& rhs ) noexcept;
(4) (C++11 起)
1) 默认构造函数。构造未建立结果状态( ready() != true )的 match_result 。
2)a 的副本分配器,构造未建立结果状态( ready() != true )的 match_result 。
3) 复制构造函数。以 rhs 的副本构造 match_result 。
4) 移动构造函数。用移动语义构造拥有 rhs 内容的 match_result 。调用后, rhs 在合法但未指定的状态。

参数

a - 用于此容器所有内存分配的分配器
rhs - 用作源以初始化 match_result 的另一 match_result

异常

1-2) (无)

缺陷报告

下列更改行为的缺陷报告追溯地应用于以前出版的 C++ 标准。

DR 应用于 出版时的行为 正确行为
P0935R0 C++11 默认构造函数曾为 explicit 使之为隐式
关闭