macos - C++的编译器的问题
PHP中文网
PHP中文网 2017-04-17 12:08:57
0
1
620

系统 Mac
编辑器 MacVim
编译器 clang++ 和 g++
IDE Xcode
在终端中编译失败,在Xcode中运行成功,为什么?
代码如下:

#include <iostream>
#include <string>
#include <vector>
//#include "t.h"
using namespace std;

int main()
{
    vector<string> v1={"hi"};
    vector<string> v2;
    v1.insert(v1.begin(),"hello");

    for(auto a:v1)
    {
        cout<<a<<endl;
    }
    return 0;
}

终端编译的界面如下
错误描述为

non-aggregate type 'vector<string>' cannot be initialized with an initializer list

clang++ 和 g++ 错误描述一样

但是在Xcode中成功运行了

求教……

PHP中文网
PHP中文网

认证0级讲师

全部回覆(1)
刘奇

http://stackoverflow.com/questions/10408849/how-can-i-use-c-11-features-in-clang

IDE 有選項可自動偵測 C++ 11 的新特性,指令要手動新增控制參數。

g++ -std=c++11 t.cpp

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!