This is my first blog article. 你好,Github Page

Code

#include <iostream>
#include <cstdio>

int main(int argc, char *argv[]) {
	int b = 0;
	auto func = [&b](int a) -> void {std::cout<<a<<" "<<b++<<std::endl;};
	func(1);
	func(10);
	b++;
	func(0);
	return 0;
}

编译

clang++ --std=c++11 --stdlib=libstdc++ main.cpp

输出

zhujun1980@localhost:~/source/github/a$ ./a.out
1 0
10 1
0 3


blog comments powered by Disqus

Published

11 October 2012