概述
C++11 requires that lambda function parameters be declared with concrete types. This is sometimes annoying. auto
is really nice, especially when the type is complex like std::vector<std::string>::iterator
is quite long to type. I know C++14 allows auto
in lambda functions. But how to not use concrete types in lambda function parameters in C++11?
C ++ 11要求使用具体类型声明lambda函数参数。 有时这很烦人。 auto
真的很好,特别是当类型很复杂,例如std::vector<std:: string >::iterator
,键入的时间很长。 我知道C ++ 14允许auto
输入lambda函数。 但是,如何在C ++ 11的lambda函数参数中不使用具体类型呢?
In C++11, you may let the compiler infer the type for you by using
在C ++ 11中,您可以让编译器通过使用来为您推断类型
decltype(...)
and replace the type declaration with decltype()
.
并将类型声明替换为decltype()
。
For example
例如
#include <iostream>
#include <string>
#include <algorithm>
int main ()
{
std::vector<std::string> ss = {"hello", "world"};
std::transform(std::begin(ss), std::end(ss), std::begin(ss), [](decltype(*std::begin(ss)) si) {
return si;
});
return 0;
}
decltype(*std::begin(ss))
infers the concrete type automatically for you so that you don’t need to manually write the concrete type delcaration.
decltype(*std::begin(ss))
自动为您推断具体类型,因此您无需手动编写具体类型delcaration。
翻译自: https://www.systutorials.com/how-to-not-use-concrete-types-in-lambda-function-parameters-in-c11/
最后
以上就是聪慧大碗为你收集整理的如何在C ++ 11的lambda函数参数中不使用具体类型?的全部内容,希望文章能够帮你解决如何在C ++ 11的lambda函数参数中不使用具体类型?所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复