'method' :'interface' 未引進此方法
備註
當您明確覆寫函式時,函式簽章必須完全符合您要覆寫之函式的宣告。
Example
下列範例會產生 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);
};