What C++ compilers are supporting lambda already?

后端 未结 4 1644
闹比i
闹比i 2021-02-08 15:28

Are there C++ compilers already supporting C++0x lambda expressions?

相关标签:
4条回答
  • 2021-02-08 15:45

    Intel C++ Compiler does, e.g. according to TBB Tutorial.

    0 讨论(0)
  • 2021-02-08 15:49

    G++ supports it in 4.5 if you enable it using -std=gnu++0x.

    0 讨论(0)
  • 2021-02-08 15:52

    g++ has support since 4.5. Status for C++11 support in gcc can be found here.

    0 讨论(0)
  • 2021-02-08 15:58

    Visual Studio 2010 CTP supports it already.

    Update: It is now Visual Studio 2010 Beta 2

    0 讨论(0)
提交回复
热议问题