नोट
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप साइन इन करने या निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
'destructor' : an interface cannot have a destructor
Remarks
A Visual C++ interface cannot have a destructor.
Example
The following example generates C2849:
// C2849.cpp
// compile with: /c
__interface C {
~C(); // C2849 destructor not allowed in an interface
};