歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux編程 >> Linux編程

Objective-C語法之異常處理

Objective-C的異常比較像Java的異常處理,也有@finally的處理,不管異常是否捕獲都都要執行。 異常處理捕獲的語法:
  1. @try {  
  2.       <#statements#>  
  3.   }  
  4.   @catch (NSException *exception) {  
  5.       <#handler#>  
  6.   }  
  7.   @finally {  
  8.       <#statements#>  
  9.   }  
@catch{} 塊 對異常的捕獲應該先細後粗,即是說先捕獲特定的異常,再使用一些泛些的異常類型。 我們自定義兩個異常類,看看異常異常處理的使用。

1、新建SomethingException,SomeOverException這兩個類,都繼承與NSException類。

SomethingException.h
  1. #import <Foundation/Foundation.h>   
  2.   
  3. @interface SomethingException : NSException  
  4.   
  5. @end  
SomethingException.m
  1. #import "SomethingException.h"   
  2.   
  3. @implementation SomethingException  
  4.   
  5. @end  
SomeOverException.h
  1. #import <Foundation/Foundation.h>   
  2.   
  3. @interface SomeOverException : NSException  
  4.   
  5. @end  
SomeOverException.m
  1. #import "SomeOverException.h"   
  2.   
  3. @implementation SomeOverException  
  4.   
  5. @end  

2、新建Box類,在某些條件下產生異常。

  1. #import <Foundation/Foundation.h>   
  2.   
  3. @interface Box : NSObject  
  4. {  
  5.     NSInteger number;  
  6. }  
  7. -(void) setNumber: (NSInteger) num;  
  8. -(void) pushIn;  
  9. -(void) pullOut;  
  10. -(void) printNumber;  
  11. @end  
 
  1. @implementation Box  
  2. -(id) init {  
  3.     self = [super init];  
  4.       
  5.     if ( self ) {  
  6.         [self setNumber: 0];  
  7.     }  
  8.       
  9.     return self;  
  10. }  
  11.   
  12. -(void) setNumber: (NSInteger) num {  
  13.     number = num;  
  14.       
  15.     if ( number > 10 ) {  
  16.         NSException *e = [SomeOverException  
  17.                           exceptionWithName: @"BoxOverflowException"  
  18.                           reason: @"The level is above 100"  
  19.                           userInfo: nil];  
  20.         @throw e;  
  21.     } else if ( number >= 6 ) {  
  22.         // throw warning   
  23.         NSException *e = [SomethingException  
  24.                           exceptionWithName: @"BoxWarningException"  
  25.                           reason: @"The level is above or at 60"  
  26.                           userInfo: nil];  
  27.         @throw e;  
  28.     } else if ( number < 0 ) {  
  29.         // throw exception   
  30.         NSException *e = [NSException  
  31.                           exceptionWithName: @"BoxUnderflowException"  
  32.                           reason: @"The level is below 0"  
  33.                           userInfo: nil];  
  34.         @throw e;  
  35.     }  
  36. }  
  37.   
  38. -(void) pushIn {  
  39.     [self setNumber: number + 1];  
  40. }  
  41.   
  42. -(void) pullOut {  
  43.     [self setNumber: number - 1];  
  44. }  
  45.   
  46. -(void) printNumber {  
  47.     NSLog(@"Box number is: %d", number);  
  48. }  
  49. @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"異常的名稱和理由,在捕獲時可以獲取。

Copyright © Linux教程網 All Rights Reserved