Napomena
Za pristup ovoj stranici potrebna je autorizacija. Možete se pokušati prijaviti ili promijeniti direktorije.
Za pristup ovoj stranici potrebna je autorizacija. Možete pokušati promijeniti direktorije.
none of the overload functions were introduced by 'interface'
Remarks
You tried to explicitly override a member that does not exist in the specified interface.
Example
The following example generates C3243:
// C3243.cpp
#pragma warning(disable:4199)
__interface IX14A {
void g();
};
__interface IX14B {
void f();
void f(int);
};
class CX14 : public IX14A, public IX14B {
public:
void IX14A::g();
void IX14B::f();
void IX14B::f(int);
};
void CX14::IX14A::f() // C3243 occurs here
{
}