Compilerwarnung (Ebene 1) C4374
'function1': Schnittstellenmethode wird durch die nicht virtuelle 'function2'-Methode nicht implementiert.
Der Compiler hat erwartet, dass das virtuelle Schlüsselwort in einer Methodendefinition gefunden wird.
Im folgenden Beispiel wird C4374 generiert:
// C4374.cpp
// compile with: /clr /W1 /c /WX
public interface class I {
void f();
};
public ref struct B {
void f() {
System::Console::WriteLine("B::f()");
}
};
public ref struct C {
virtual void f() {
System::Console::WriteLine("C::f()");
}
};
public ref struct D : B, I {}; // C4374
public ref struct E : C, I {}; // OK