หมายเหตุ
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลอง ลงชื่อเข้าใช้หรือเปลี่ยนไดเรกทอรีได้
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลองเปลี่ยนไดเรกทอรีได้
illegal
__leavestatement
Remarks
A __leave statement must be inside a __try block.
Example
The following example generates C2703:
// C2703.cpp
int main() {
__leave; // C2703
__try {
// try the following line instead
__leave;
}
__finally {}
}
See also
The __leave keyword
try-except statement
try-finally statement