הערה
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות להיכנס או לשנות מדריכי כתובות.
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות לשנות מדריכי כתובות.
'function': cannot be declared static
Remarks
Neither constructors nor destructors can be declared static.
Example
The following example generates C2574:
// C2574.cpp
// compile with: /c
struct S
{
static S() {} // C2574
// Try the following line instead:
// S() {}
};