หมายเหตุ
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลอง ลงชื่อเข้าใช้หรือเปลี่ยนไดเรกทอรีได้
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลองเปลี่ยนไดเรกทอรีได้
'interface' : interfaces do not support virtual inheritance
Remarks
You tried to virtually inherit from an interface.
Example
For example,
// C3118.cpp
__interface I1 {
};
__interface I2 : virtual I1 { // C3118
};
generates this error.