我是靠谱客的博主 聪慧大碗,最近开发中收集的这篇文章主要介绍如何在C ++ 11的lambda函数参数中不使用具体类型?,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

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。

Answered by Eric Z Ma.
埃里克·马(Eric Z Ma)回答。

翻译自: https://www.systutorials.com/how-to-not-use-concrete-types-in-lambda-function-parameters-in-c11/

最后

以上就是聪慧大碗为你收集整理的如何在C ++ 11的lambda函数参数中不使用具体类型?的全部内容,希望文章能够帮你解决如何在C ++ 11的lambda函数参数中不使用具体类型?所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(47)

评论列表共有 0 条评论

立即
投稿
返回
顶部