หมายเหตุ
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลอง ลงชื่อเข้าใช้หรือเปลี่ยนไดเรกทอรีได้
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลองเปลี่ยนไดเรกทอรีได้
'class' : a class declared as 'keyword' cannot be instantiated
Remarks
An attempt was made to instantiate a class marked as abstract. A class marked as abstract can be a base class, but it cannot be instantiated.
Example
The following example generates C3622.
// C3622.cpp
// compile with: /clr
ref class a abstract {};
int main() {
a aa; // C3622
}