Visual C ++ 2012似乎不尊重lambda中的默认捕获

时间:2013-08-24 16:26:43

标签: c++ visual-c++ c++11 lambda

在MSVC 2012中:

const std::string tableString;
std::vector<size_t> trPosVec;
// other stuff...
std::for_each(trIterator, endIterator,
    [&, tableString, trPosVec](const boost::match_results<std::string::const_iterator>& matches){
        trPosVec.push_back(std::distance(tableString.begin(), matches[0].second));
    }
);

此代码提供工具提示错误:

Error: no instance of overloaded function "std::vector<_Ty, _Alloc>::push_back [with _Ty=size_t, _Alloc=std::allocator<char32_t>]" matches the argument list and object (the object has type qualifiers that prevent a match)
    argument types are: (ptrdiff_t)
    object type is: const std::vector<size_t, std::allocator<char32_t>>

我认为它意味着它按值捕获trPosVec。当我明确指定捕获模式[&tableString, &trPosVec]时,它工作正常。如果我尝试双重指定[&, tableString, &trPosVec],则会Error: explicit capture matches default.这里发生了什么?

1 个答案:

答案 0 :(得分:6)

您的捕获规范表明您希望通过引用捕获所有本地变量,tableStringtrPosVec除外,您希望按值捕获这些变量。如果这两个变量是您想捕获的唯一变量,并且您希望通过引用捕获它们,则应使用捕获表达式[&tableString, &trPosVec],或者只是通过引用[&]捕获所有局部变量。