नोट
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप साइन इन करने या निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
'class::~identifier' : destructor/finalizer tag mismatch
Remarks
The name of the destructor must be the class name preceded by a tilde (~). The constructor and destructor are the only members that have the same name as the class.
Example
The following example generates C2523:
// C2523.cpp
// compile with: /c
class A {
~B(); // C2523
~A(); // OK
};