Lambda 的显式返回类型

2021-12-22 00:00:00 lambda visual-c++ c++ c++11 visual-c++-2012

当我尝试编译此代码 (VS2010) 时,出现以下错误:错误 C3499:已被指定为具有 void 返回类型的 lambda 无法返回值

When I try and compile this code (VS2010) I am getting the following error: error C3499: a lambda that has been specified to have a void return type cannot return a value

void DataFile::removeComments()
{
  string::const_iterator start, end;
  boost::regex expression("^\s?#");
  boost::match_results<std::string::const_iterator> what;
  boost::match_flag_type flags = boost::match_default;
  // Look for lines that either start with a hash (#)
  // or have nothing but white-space preceeding the hash symbol
  remove_if(rawLines.begin(), rawLines.end(), [&expression, &start, &end, &what, &flags](const string& line)
  {
    start = line.begin();
    end = line.end();
    bool temp = boost::regex_search(start, end, what, expression, flags);
    return temp;
  });
}

我如何指定 lambda 具有void"返回类型.此外,如何指定 lambda 具有bool"返回类型?

How did I specify that the lambda has a 'void' return type. More-over, how do I specify that the lambda has 'bool' return type?

更新

以下编译.有人可以告诉我为什么可以编译而另一个不能吗?

The following compiles. Can someone please tell me why that compiles and the other does not?

void DataFile::removeComments()
{
  boost::regex expression("^(\s+)?#");
  boost::match_results<std::string::const_iterator> what;
  boost::match_flag_type flags = boost::match_default;
  // Look for lines that either start with a hash (#)
  // or have nothing but white-space preceeding the hash symbol
  rawLines.erase(remove_if(rawLines.begin(), rawLines.end(), [&expression, &what, &flags](const string& line)
  { return boost::regex_search(line.begin(), line.end(), what, expression, flags); }));
}

推荐答案

您可以使用 -> 显式指定 lambda 的返回类型.在参数列表后输入:

[]() -> Type { }

但是,如果 lambda 有一个语句并且该语句是 return 语句(并且它返回一个表达式),则编译器可以从该返回表达式的类型推导出返回类型.您的 lambda 中有多个语句,因此它不会推断类型.

However, if a lambda has one statement and that statement is a return statement (and it returns an expression), the compiler can deduce the return type from the type of that one returned expression. You have multiple statements in your lambda, so it doesn't deduce the type.

相关文章