หมายเหตุ
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลอง ลงชื่อเข้าใช้หรือเปลี่ยนไดเรกทอรีได้
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลองเปลี่ยนไดเรกทอรีได้
'identifier' : unexpected to the right of 'name'
Remarks
A destructor is called using an incorrect identifier.
Example
The following example generates C2324:
// C2324.cpp
class A {};
typedef A* pA_t;
int i;
int main() {
pA_t * ppa = new pA_t;
ppa->~i; // C2324
ppa->~pA_t(); // OK
}