c_cpp C ++中的基本lambda示例

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp C ++中的基本lambda示例相关的知识,希望对你有一定的参考价值。

#include <iostream>

//lambda examples for C++

int main() {
	auto add = [](int a, int b){
		return a + b;
	};
    std::cout << add(3, 4) << std::endl;
    //7
    auto get = [](int a[], int index){
    	return a[index];
    };
    int f[] = {0, 1, 2};
    std::cout << get(f, 1) << std::endl;
    //1
}

以上是关于c_cpp C ++中的基本lambda示例的主要内容,如果未能解决你的问题,请参考以下文章

c_cpp c中的铸造示例

c_cpp C ++中的MinHeap示例

c_cpp C中的简单示例

c_cpp 示例C中的氙气图

c_cpp C ++中的char指针示例

c_cpp C中的基本用户输入功能