首页 > 学院 > 开发设计 > 正文

g++ 支持c11、c14的方法

2019-11-10 17:08:50
字体:
来源:转载
供稿:网友

//第一种,直接包含在源程序文件中,如第一行代码所示

#PRagma GCC diagnostic error "-std=c++14"#include <iostream>using namespace std;int main(int argc,char **argv){ cout<<"hello world!"<<endl; auto i=11; cout<<i<<endl; return 0;}

//第二种方法,可以直接取别名方法 如下所示:

g++ -std=c++14 test.cpp -o test


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表