Objective-C的異常比較像Java的異常處理,也有@finally的處理,不管異常是否捕獲都都要執行。
異常處理捕獲的語法:
- @try {
- <#statements#>
- }
- @catch (NSException *exception) {
- <#handler#>
- }
- @finally {
- <#statements#>
- }
@catch{} 塊 對異常的捕獲應該先細後粗,即是說先捕獲特定的異常,再使用一些泛些的異常類型。
我們自定義兩個異常類,看看異常異常處理的使用。
1、新建SomethingException,SomeOverException這兩個類,都繼承與NSException類。
SomethingException.h
- #import <Foundation/Foundation.h>
-
- @interface SomethingException : NSException
-
- @end
SomethingException.m
- #import "SomethingException.h"
-
- @implementation SomethingException
-
- @end
SomeOverException.h
- #import <Foundation/Foundation.h>
-
- @interface SomeOverException : NSException
-
- @end
SomeOverException.m
- #import "SomeOverException.h"
-
- @implementation SomeOverException
-
- @end
2、新建Box類,在某些條件下產生異常。
- #import <Foundation/Foundation.h>
-
- @interface Box : NSObject
- {
- NSInteger number;
- }
- -(void) setNumber: (NSInteger) num;
- -(void) pushIn;
- -(void) pullOut;
- -(void) printNumber;
- @end
- @implementation Box
- -(id) init {
- self = [super init];
-
- if ( self ) {
- [self setNumber: 0];
- }
-
- return self;
- }
-
- -(void) setNumber: (NSInteger) num {
- number = num;
-
- if ( number > 10 ) {
- NSException *e = [SomeOverException
- exceptionWithName: @"BoxOverflowException"
- reason: @"The level is above 100"
- userInfo: nil];
- @throw e;
- } else if ( number >= 6 ) {
- // throw warning
- NSException *e = [SomethingException
- exceptionWithName: @"BoxWarningException"
- reason: @"The level is above or at 60"
- userInfo: nil];
- @throw e;
- } else if ( number < 0 ) {
- // throw exception
- NSException *e = [NSException
- exceptionWithName: @"BoxUnderflowException"
- reason: @"The level is below 0"
- userInfo: nil];
- @throw e;
- }
- }
-
- -(void) pushIn {
- [self setNumber: number + 1];
- }
-
- -(void) pullOut {
- [self setNumber: number - 1];
- }
-
- -(void) printNumber {
- NSLog(@"Box number is: %d", number);
- }
- @end
這個類的作用是,初始化Box時,number數字是0,可以用pushIn 方法往Box裡推入數字,每調用一次,number加1.當number數字大於等於6時產生SomethingException異常,告訴你數字達到或超過6了,超過10時產生SomeOverException異常,小於1時產生普通的NSException異常。
這裡寫 [SomeOverException exceptionWithName:@"BoxOverflowException" reason:@"The level is above 100"異常的名稱和理由,在捕獲時可以獲取。