概述
我使用的g++ 版本信息如下:
g++ (Ubuntu 4.8.4-2ubuntu1~14.04.1) 4.8.4
Copyright (C) 2013 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
但是在编译使用了c++11 特性的代码时报错了
/Program/cppProgram$ g++ mixtype.cpp -o mixtype
mixtype.cpp: In function ‘int main()’:
mixtype.cpp:18:10: error: ‘ppb’ does not name a type
auto ppb = arp;
^
mixtype.cpp:21:21: error: ‘ppb’ was not declared in this scope
std::cout << (*(ppb+1))->year << std::endl;
^
发现是auto导致不能编译的,auto实在c++ 中的特性,所以如下编译就不会报错:
g++ mixtype.cpp -o mixtype -std=c++11
编译通过;
最后
以上就是安详学姐为你收集整理的Ubuntu 14 g++ 使用c++11特性报错的全部内容,希望文章能够帮你解决Ubuntu 14 g++ 使用c++11特性报错所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复