Objective-C 異常處理
異常處理可在 Objective-C 基礎類中找到,使用 NSException類作爲基類。
異常處理是實現下列功能塊:
@try - 此塊試圖執行一組語句。
@catch - 此塊試圖在try塊捕獲異常。
@finally - 此塊包含設置始終執行的語句。
#import <Foundation/Foundation.h> int main() { NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; NSMutableArray *array = [[NSMutableArray alloc]init]; @try { NSString *string = [array objectAtIndex:10]; } @catch (NSException *exception) { NSLog(@"%@ ",exception.name); NSLog(@"Reason: %@ ",exception.reason); } @finally { NSLog(@"@@finaly Always Executes"); } [pool drain]; return 0; }
2013-09-29 14:36:05.547 Answers[809:303] NSRangeException
2013-09-29 14:36:05.548 Answers[809:303] Reason: *** -[__NSArrayM objectAtIndex:]: index 10 beyond bounds for empty array
2013-09-29 14:36:05.548 Answers[809:303] @finally Always Executes
在上面的程序,而不是程序終止,由於異常,繼續進行後續的程序,因爲我們已經使用異常處理。