नोट
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप साइन इन करने या निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
'method' : this method was not introduced by 'interface'
Remarks
When you explicitly override a function, the function signature must exactly match the declaration for the function that you are overriding.
Example
The following example generates C3241:
// C3241.cpp
#pragma warning(disable:4199)
__interface IX12A {
void mf();
};
__interface IX12B {
void mf(int);
};
class CX12 : public IX12A, public IX12B { // C3241
void IX12A::mf(int);
};