description | title | ms.date | f1_keywords | helpviewer_keywords | ms.assetid | ||
---|---|---|---|---|---|---|---|
Learn more about: Compiler Error C2583 | Compiler Error C2583 | 11/04/2016 |
|
| b1c952dc-872c-47e4-9fc8-4dd72bcee6f9 |
'identifier' : 'const/volatile' 'this' pointer is illegal for constructors/destructors
A constructor or destructor is declared const
or volatile
. This is not allowed.
The following sample generates C2583:
// C2583.cpp// compile with: /cclassA { public:int i; A() const; // C2583// try the following line instead// A(); };