//第一种,直接包含在源程序文件中,如第一行代码所示
#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
新闻热点
疑难解答