Objective-C的异常比较像Java的异常处理,也有@finally的处理,不管异常是否捕获都都要执行。



异常处理捕获的语法:



[cpp]  ​​view plain​​​ ​​​copy​



  1. @try {
  2. <#statements#>
  3. }
  4. catch (NSException *exception) {
  5. <#handler#>
  6. }
  7. @finally {
  8. <#statements#>
  9. }



我们自定义两个异常类,看看异常异常处理的使用。



1、新建SomethingException,SomeOverException这两个类,都继承与NSException类。



SomethingException.h



[cpp]  ​​view plain​​​ ​​​copy​



  1. #import <Foundation/Foundation.h>

  2. @interface SomethingException : NSException

  3. @end



[cpp]  ​​view plain​​​ ​​​copy​



  1. #import "SomethingException.h"

  2. @implementation SomethingException

  3. @end



[cpp]  ​​view plain​​​ ​​​copy​



  1. #import <Foundation/Foundation.h>

  2. @interface SomeOverException : NSException

  3. @end



[cpp]  ​​view plain​​​ ​​​copy​



  1. #import "SomeOverException.h"

  2. @implementation SomeOverException

  3. @end



2、新建Box类,在某些条件下产生异常。



[cpp]  ​​view plain​​​ ​​​copy​



  1. #import <Foundation/Foundation.h>

  2. @interface Box : NSObject
  3. {
  4. NSInteger number;
  5. }
  6. -(void) setNumber: (NSInteger) num;
  7. -(void) pushIn;
  8. -(void) pullOut;
  9. -(void) printNumber;
  10. @end



 



[cpp]  ​​view plain​​​ ​​​copy​



  1. @implementation Box
  2. -(id) init {
  3. self = [super init];

  4. if ( self ) {
  5. [self setNumber: 0];
  6. }

  7. return self;
  8. }

  9. -(void) setNumber: (NSInteger) num {
  10. number = num;

  11. if ( number > 10 ) {
  12. NSException *e = [SomeOverException
  13. "BoxOverflowException"
  14. "The level is above 100"
  15. userInfo: nil];
  16. throw e;
  17. else if ( number >= 6 ) {
  18. // throw warning
  19. NSException *e = [SomethingException
  20. "BoxWarningException"
  21. "The level is above or at 60"
  22. userInfo: nil];
  23. throw e;
  24. else if ( number < 0 ) {
  25. // throw exception
  26. NSException *e = [NSException
  27. "BoxUnderflowException"
  28. "The level is below 0"
  29. userInfo: nil];
  30. throw e;
  31. }
  32. }

  33. -(void) pushIn {
  34. [self setNumber: number + 1];
  35. }

  36. -(void) pullOut {
  37. [self setNumber: number - 1];
  38. }

  39. -(void) printNumber {
  40. "Box number is: %d", number);
  41. }
  42. @end



这里写 [SomeOverException  exceptionWithName:@"BoxOverflowException"  reason:@"The level is above 100"异常的名称和理由,在捕获时可以获取。

3、使用Box,在适当添加下捕获Box类的异常



3.1、在没超过6时,没有异常



[cpp]  ​​view plain​​​ ​​​copy​



  1. - (void)viewDidLoad
  2. {
  3. [super viewDidLoad];
  4. NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
  5. Box *box = [[Box alloc]init];
  6. for (int i = 0; i < 5; i++) {
  7. [box pushIn];
  8. [box printNumber];
  9. }
  10. }



Box number is: 1

Box number is: 2

Box number is: 3

Box number is: 4

Box number is: 5

3.2 超过6,产生异常



[cpp]  ​​view plain​​​ ​​​copy​



  1. for (int i = 0; i < 11; i++) {
  2. [box pushIn];
  3. [box printNumber];
  4. }



[cpp]  ​​view plain​​​ ​​​copy​



  1. 2012-07-04 09:12:05.889 ObjectiveCTest[648:f803] Box number is: 1
  2. 2012-07-04 09:12:05.890 ObjectiveCTest[648:f803] Box number is: 2
  3. 2012-07-04 09:12:05.890 ObjectiveCTest[648:f803] Box number is: 3
  4. 2012-07-04 09:12:05.890 ObjectiveCTest[648:f803] Box number is: 4
  5. 2012-07-04 09:12:05.891 ObjectiveCTest[648:f803] Box number is: 5
  6. 2012-07-04 09:12:05.891 ObjectiveCTest[648:f803] *** Terminating app due to uncaught exception 'BoxWarningException', reason: 'The number is above or at 60'



3.3、加上异常处理



[cpp]  ​​view plain​​​ ​​​copy​



  1. for (int i = 0; i < 11; i++) {
  2. try {
  3. [box pushIn];
  4. }
  5. catch (SomethingException *exception) {
  6. "%@ %@", [exception name], [exception reason]);
  7. }
  8. catch (SomeOverException *exception) {
  9. "%@", [exception name]);
  10. }
  11. @finally {
  12. [box printNumber];
  13. }
  14. }

运行,程序没有崩溃,打印结果:


[cpp]  ​​view plain​​​ ​​​copy​



  1. 2012-07-04 09:14:35.165 ObjectiveCTest[688:f803] Box number is: 1
  2. 2012-07-04 09:14:35.167 ObjectiveCTest[688:f803] Box number is: 2
  3. 2012-07-04 09:14:35.167 ObjectiveCTest[688:f803] Box number is: 3
  4. 2012-07-04 09:14:35.167 ObjectiveCTest[688:f803] Box number is: 4
  5. 2012-07-04 09:14:35.167 ObjectiveCTest[688:f803] Box number is: 5
  6. 2012-07-04 09:14:35.167 ObjectiveCTest[688:f803] BoxWarningException The number is above or at 60
  7. 2012-07-04 09:14:35.168 ObjectiveCTest[688:f803] Box number is: 6
  8. 2012-07-04 09:14:35.168 ObjectiveCTest[688:f803] BoxWarningException The number is above or at 60
  9. 2012-07-04 09:14:35.168 ObjectiveCTest[688:f803] Box number is: 7
  10. 2012-07-04 09:14:35.168 ObjectiveCTest[688:f803] BoxWarningException The number is above or at 60
  11. 2012-07-04 09:14:35.168 ObjectiveCTest[688:f803] Box number is: 8
  12. 2012-07-04 09:14:35.168 ObjectiveCTest[688:f803] BoxWarningException The number is above or at 60
  13. 2012-07-04 09:14:35.169 ObjectiveCTest[688:f803] Box number is: 9
  14. 2012-07-04 09:14:35.169 ObjectiveCTest[688:f803] BoxWarningException The number is above or at 60
  15. 2012-07-04 09:14:35.169 ObjectiveCTest[688:f803] Box number is: 10
  16. 2012-07-04 09:14:35.169 ObjectiveCTest[688:f803] BoxOverflowException
  17. 2012-07-04 09:14:35.225 ObjectiveCTest[688:f803] Box number is: 11



3.4 、小于0时的异常



在Box类的setNumber里,当number小于0时,我们抛出普通异常。



[cpp]  ​​view plain​​​ ​​​copy​



  1. @try {
  2. [box setNumber:-10];
  3. }
  4. catch (NSException *exception) {
  5. "%@",[exception name]);
  6. }
  7. @finally {
  8. [box printNumber];
  9. }



[cpp]  ​​view plain​​​ ​​​copy​



  1. 2012-07-04 09:17:42.405 ObjectiveCTest[753:f803] BoxUnderflowException
  2. 2012-07-04 09:17:42.406 ObjectiveCTest[753:f803] Box number is: -10