본문 바로가기
C++/0x09-lambda express

lambda express 사용하기 ][ the call operator

by SpeeDr00t 2019. 2. 27.
반응형

lambda express 사용하기 ][ the call operator


test해보기 : https://wandbox.org/permlink/3bwgkuIXyb83E0rK

■ 컴파일 및 실행해보기  

//
// https://wandbox.org/permlink/3bwgkuIXyb83E0rK
//
// $ g++ prog.cc -Wall -Wextra -I/opt/wandbox/boost-1.63.0/gcc-7.3.0/include -std=gnu++17
//
#include <iostream>
#include <algorithm>
#include <vector>
int main() {
auto helloworld = [](int a) mutable { std::cout << ++a; };
helloworld(100);
}
view raw lambda1.cpp hosted with ❤ by GitHub



반응형

'C++ > 0x09-lambda express' 카테고리의 다른 글

lambda express 사용하기 ][ captures  (0) 2019.02.27