नोट
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप साइन इन करने या निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
'method' : this method was introduced by 'interface' not by 'interface'
Remarks
You tried to explicitly override a member that does not exist in the specified interface but does exist in another base class.
Example
The following example generates C3244:
// C3244.cpp
#pragma warning(disable:4199)
__interface IX15A {
void f();
};
__interface IX15B {
void g();
};
class CX15 : public IX15A, public IX15B {
public:
void IX15A::f();
void IX15B::g();
};
void CX15::IX15A::g() // C3244 occurs here
{
}