컴파일러 오류 C2583
'identifier': 'const/volatile' 'this' 포인터가 생성자/소멸자에 대해 잘못되었습니다.
생성자 또는 소멸자가 선언되거나 const
volatile
. 이것은 허용되지 않습니다.
다음 샘플에서는 C2583을 생성합니다.
// C2583.cpp
// compile with: /c
class A {
public:
int i;
A() const; // C2583
// try the following line instead
// A();
};