我是靠谱客的博主 潇洒小丸子,最近开发中收集的这篇文章主要介绍error: ‘to_string’ was not declared in this scope,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

错误:

error: ‘to_string’ was not declared in this scope

 

原因:

to_string是C++11引入的新功能,旧版本编译器可能不支持它,所以要给编译器加上“C++11”编译支持

 

解决方案:

Linux下的GCC编译器:在 g++ 命令行加入编译选项 -std=c++11,例如:

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

 

CodeBlocks编译器:工具栏打开Settings->Compiler,在这里勾选C++11标准即可。(参考链接)

 

Dev C++ 编译器:在菜单栏点开Tools -> Compile Options,加上圈住的编译指令即可让编译器支持c++11的标准。(参考链接)

 

转载于:https://www.cnblogs.com/sylar5/p/9797057.html

最后

以上就是潇洒小丸子为你收集整理的error: ‘to_string’ was not declared in this scope的全部内容,希望文章能够帮你解决error: ‘to_string’ was not declared in this scope所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(49)

评论列表共有 0 条评论

立即
投稿
返回
顶部