C++ Array Initializers Warnings

北城以北 提交于 2019-12-01 09:33:52

To make it C++98 compatible, you need to initialize non-static class constants outside of the class declaration.

You need do compile with -std=c++11 (for gcc and clang). If you do not do this, your program is checked vs. the old C++98 standard to ensure compatibility with old compilers.

So it allows you to use C++11 features without the flag, but warns you so that you don't do it on accident.

Further explanation:

Your code compiles fine because it is legal code and the compiler can compile it. The compiler omits a warning to make you aware of the fact that you used a C++11 feature because many people (like my University, sadly) still use outdated compiler like gcc4.6 that do not have full C++11 support yet. That means that these people might not be able to compile your code, which you might care about (if e.g. your professor needs to compile your assignment).

With the -std=c++11 flag you tell the compiler "This is a C++11 program, meant to be compiled with C++11 compliant compilers". Thus, the warning becomes redundant.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!