C ++
以下代码:
#include<iostream>
#include<regex>
using namespace std;
int main(int argc, char *argv[])
{
regex reg("/");
string s = "Split/Values/Separated/By/Slashes";
sregex_token_iterator it{std::begin(s), std::end(s), reg, -1};
sregex_token_iterator end;
while(it != end)
{
cout << *it++ << endl;
}
return 0;
}
应输出:
Split
Values
Separated
By
Slashes
但它输出这个:
Values
Separated
By
Slashes
主代码可能是问题*it++
,如果我写cout << *it << endl;++it;
,它的工作权利。
当我将立场c ++ 11正则表达式更改为boost-regex时, *it++
也适用。
我检查了正则表达式的头部,我认为operator++(int)
函数没有问题。
我的铛版本是
Apple LLVM version 5.0 (clang-500.2.79) (based on LLVM 3.3svn)
Target: x86_64-apple-darwin13.0.0
Thread model: posix
有没有人有这样的问题?
叮当中是否有错误?
我发现这是一个libc ++的实现错误。
转到正则表达式,插入以下两行
regex_token_iterator operator++(int)
{
regex_token_iterator __t(*this);
std::cout << "test---" << *__t << "---test" << endl;
++(*this);
std::cout << "test---" << *__t << "---test" << endl;
return __t;
}
你发现* __ t的值在++(* this)后发生了变化!
深入挖掘你会发现,
* __ t实际上是通过返回内部value_type指针_result来实现的,而_result实际上指向&_position-> prefix(),它是match_results的_prefix对象的地址,该对象的地址从未改变,但其内容改变了。
链接地址: http://www.djcxy.com/p/17535.html上一篇: c++