考虑到带有 signaturer 的 C++11 函数,std::regex_match(
std::string const&, std::smatch& match, std::regex const& re )
第一个参数的生命周期有什么限制?我没有找到任何东西,但是当我执行以下程序时(使用 VC++ 2010 编译,迭代器调试处于活动状态):
int
main()
{
std::string a("aaa");
std::string c("ccc");
std::regex re("aaa(.*)ccc");
std::smatch m;
if (std::regex_match(a + "xyz" + c, m, re)) {
std::cout << m[0] << std::endl;
std::cout << m[1] << std::endl;
}
return 0;
}
它崩溃了,无疑是因为sub_match
inm
只将迭代器保留在字符串中,而不是副本。我在标准中找不到任何禁止我的代码的内容。
FWIW:它也不起作用boost::regex
,这就是它的
std::regex
基础。(当然,Boost 也没有记录任何关于生命周期的限制。)
最后,我想我的问题是:我应该向标准组织发送 DR,还是向 Microsoft 发送错误报告?