編譯器警告 (層級 1) C4490
'override' :覆寫規範的使用不正確;'function' 不符合基底 ref 類別方法
覆寫規範使用不正確。 例如,您不會覆寫介面函式,您會實作它。
如需詳細資訊,請參閱 覆寫規範。
範例
下列範例會產生 C4490。
// C4490.cpp
// compile with: /clr /c /W1
interface struct IFace {
void Test();
};
ref struct Class1 : public IFace {
virtual void Test() override {} // C4490
// try the following line instead
// virtual void Test() {}
};