添加链接
link管理
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接
相关文章推荐
悲伤的野马  ·  一文搞定 pytest-html ...·  5 天前    · 
微醺的荔枝  ·  Use ...·  5 天前    · 
聪明的作业本  ·  Vibration Test ...·  4 天前    · 
魁梧的八宝粥  ·  Macos with python ...·  1 周前    · 
朝气蓬勃的豆浆  ·  matebooke吧-百度贴吧·  2 月前    · 
淡定的小摩托  ·  Work — Jacek ...·  6 月前    · 
$ g++ test.cpp -o test
test.cpp: In function ‘int main()’:
test.cpp:6:7: error: ‘basicLambda’ does not name a type
  auto basicLambda = [] { cout << "Hello, world!" << endl; };
test.cpp:7:14: error: ‘basicLambda’ was not declared in this scope
  basicLambda();

经过查询,发现 gcc 是 4.8.4 版本,应该是默认不开启,但是可以通过添加编译参数 -std=c++11 解决问题,

$ g++ test.cpp --std=c++11 -o test
$ ./test
Hello, world!