หมายเหตุ
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลอง ลงชื่อเข้าใช้หรือเปลี่ยนไดเรกทอรีได้
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลองเปลี่ยนไดเรกทอรีได้
'function': a sealed function cannot have a pure-specifier
Remarks
A sealed function was declared incorrectly. For more information, see sealed.
Example
The following example generates C3611.
// C3611.cpp
// compile with: /clr /c
ref struct V {
virtual void Test() sealed = 0; // C3611
virtual void Test2() sealed; // OK
virtual void Test3() = 0; // OK
};