本文介绍了在gcc中执行C ++ 98标准的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个学校作业,应该使用符合C ++ 98的代码编写.如何强制g++
仅接受遵循此标准的代码? -std=c++98
可以解决问题,还是我需要添加其他标志?
I have a school assignment that should be written in C++98-compliant code. How can I force g++
to accept only code that follows this standard? Will -std=c++98
do the trick or do I need to add additional flags?
推荐答案
每 GCC有关标准的文档 :
因此,如果您确实要确保符合标准,则应指定-std=c++98 -pedantic
.
Therefore, you should specify -std=c++98 -pedantic
if you really want to ensure standards compliance.
这篇关于在gcc中执行C ++ 98标准的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!