Notiz
Zougrëff op dës Säit erfuerdert Autorisatioun. Dir kënnt probéieren, Iech unzemellen oder Verzeechnesser ze änneren.
Zougrëff op dës Säit erfuerdert Autorisatioun. Dir kënnt probéieren, Verzeechnesser ze änneren.
'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() {}
};