分享方式:


編譯器錯誤 C3118

'interface' :介面不支援虛擬繼承

您嘗試幾乎繼承自 介面。 例如,

// C3118.cpp
__interface I1 {
};

__interface I2 : virtual I1 {   // C3118
};

會產生此錯誤。