Explicit Return Type of Lambda(Lambda 的显式返回类型)
问题描述
当我尝试编译此代码 (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.
这篇关于Lambda 的显式返回类型的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Lambda 的显式返回类型
基础教程推荐
- 从 std::cin 读取密码 2021-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- Windows Media Foundation 录制音频 2021-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01