반응형
lambda express 사용하기 ][ the call operator
test해보기 : https://wandbox.org/permlink/3bwgkuIXyb83E0rK
■ 컴파일 및 실행해보기
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// 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); | |
} |
반응형
'C++ > 0x09-lambda express' 카테고리의 다른 글
lambda express 사용하기 ][ captures (0) | 2019.02.27 |
---|