नोट
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप साइन इन करने या निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
'function' : is not a member of any direct or indirect base class of 'class'
Remarks
You tried to use super to call a nonexistent member function.
Example
The following example generates C2794
// C2794.cpp
struct B {
void mf();
};
struct D : B {
void mf() {
__super::f(); // C2794
}
};