編譯器警告 (層級 2) C4356
'member' :靜態數據成員無法透過衍生類別初始化
靜態數據成員的初始化格式不正確。 編譯程式接受初始化。 若要避免警告,請透過基類初始化成員。
使用警告 pragma 來隱藏此警告。
下列範例會產生 C4356:
// C4356.cpp
// compile with: /W2 /EHsc
#include <iostream>
template <class T>
class C {
static int n;
};
class D : C<int> {};
int D::n = 0; // C4356
// try the following line instead
// int C<int>::n = 0;
class A {
public:
static int n;
};
class B : public A {};
int B::n = 10; // C4356
// try the following line instead
// int A::n = 99;
int main() {
using namespace std;
cout << B::n << endl;
}