Code::Blocks设置支持C++ 11

进入codeblocks,点击Settings --> Compiler..,进入如下页面

Code::Blocks设置支持C++ 11

勾选“Have g++ follow the C++11 ISO language standard [-std=c++11]”并确定。

可以通过如下示例来查看效果:

#include <iostream>
#include <functional>
using namespace std;
int add(int a, int b)
{
    return a + b;
}
int main()
{
    function<int(int,int)> f = add;
    cout << f(10, 20) << endl;
    auto g = []{ return "Hello World"; };
    cout << g() << endl;
    int a[5] = { 1, 2, 3, 4, 5 };
    for (const int & num : a)
    {
        cout << num << endl;
    }
    return 0;
}

原文链接: https://www.cnblogs.com/moonlightpoet/p/5760069.html

欢迎关注

微信关注下方公众号,第一时间获取干货硬货;公众号内回复【pdf】免费获取数百本计算机经典书籍

原创文章受到原创版权保护。转载请注明出处:https://www.ccppcoding.com/archives/238490

非原创文章文中已经注明原地址,如有侵权,联系删除

关注公众号【高性能架构探索】,第一时间获取最新文章

转载文章受原作者版权保护。转载请注明原作者出处!

(0)
上一篇 2023年2月13日 下午5:51
下一篇 2023年2月13日 下午5:51

相关推荐