description | title | ms.date | f1_keywords | helpviewer_keywords | ms.assetid | ||
---|---|---|---|---|---|---|---|
Learn more about: Compiler Error C2574 | Compiler Error C2574 | 11/04/2016 |
|
| 3e1c5c18-ee8b-4dbb-bfc0-d3b8991af71b |
'destructor' : cannot be declared static
Neither destructors nor constructors can be declared static
.
The following sample generates C2574:
// C2574.cpp// compile with: /cclassA { virtualstatic~A(); // C2574// try the following line instead// virtual ~A(); };