我第一次使用动态分配,编译器给了我这个警告,我无法在其他任何地方找到它:
warning: non-static data member initializers only available with
-std=c++11 or -std=gnu++11
有没有办法让它消失?我应该关心吗? 谢谢!
答案 0 :(得分:5)
问题:
它与动态分配无关。
您可能正在使用其中一种方法进行数据成员初始化,这是C ++ 11的一部分:
class S
{
int n; // non-static data member
int& r; // non-static data member of reference type
int a[10] = {1, 2}; // non-static data member with initializer (C++11)
std::string s, *ps; // two non-static data members
struct NestedS {
std::string s;
} d5, *d6; // two non-static data members of nested type
char bit : 2; // two-bit bitfield
};
编译器告诉您正在使用仅存在于C ++ 11(及更高版本)中的功能(非静态数据成员初始值设定项)。
解决问题:
-std=c++11
标志编译代码。我应该关心吗?
当然,是的。不注意警告可能会导致许多问题,如溢出和未定义的行为。
答案 1 :(得分:3)
始终关心警告!警告很有用,事实上,您应该始终使用-Werror
进行编译。
警告您在C ++ 11之前编译,但在代码中使用C ++ 11类内初始值设定项:
struct foo {
int i = 0; // initialization of non-static POD
};
您必须使用-std=c++11
进行编译,或者停止使用该功能并初始化构造函数中的数据成员。