หมายเหตุ
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลอง ลงชื่อเข้าใช้หรือเปลี่ยนไดเรกทอรีได้
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลองเปลี่ยนไดเรกทอรีได้
'type' : illegal type for __except expression, must be an integral
Remarks
A type was used in an __except statement, but the type is not allowed.
Example
The following example generates C2184:
// C2184.cpp
void f() {
int * p;
__try{}
__except(p){}; // C2184
}
Possible resolution:
// C2184b.cpp
// compile with: /c
void f() {
int i = 0;
__try{}
__except(i){};
}