Objective-C的异常比较像Java的异常处理,也有@finally的处理,不管异常是否捕获都都要执行。
异常处理捕获的语法:
@try {
<#statements#>
}
@catch (NSException *exception) {
<#handler#>
}
@finally {
<#statements#>
}
@catch{} 块 对异常的捕获应该先细后粗,即是说先捕获特定的异常,再使用一些泛些的异常类型。
我们自定义两个异常类,看看异常异常处理的使用。
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"异常的名称和理由,在捕获时可以获取。
3、使用Box,在适当添加下捕获Box类的异常
3.1、在没超过6时,没有异常
- (void)viewDidLoad
{
[super viewDidLoad];
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
Box *box = [[Box alloc]init];
for (int i = 0; i < 5; i++) {
[box pushIn];
[box printNumber];
}
}
打印结果:
Box number is: 1
Box number is: 2
Box number is: 3
Box number is: 4
Box number is: 5
3.2 超过6,产生异常
for (int i = 0; i < 11; i++) {
[box pushIn];
[box printNumber];
}
2012-07-04 09:12:05.889 ObjectiveCTest[648:f803] Box number is: 1
2012-07-04 09:12:05.890 ObjectiveCTest[648:f803] Box number is: 2
2012-07-04 09:12:05.890 ObjectiveCTest[648:f803] Box number is: 3
2012-07-04 09:12:05.890 ObjectiveCTest[648:f803] Box number is: 4
2012-07-04 09:12:05.891 ObjectiveCTest[648:f803] Box number is: 5
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、加上异常处理
for (int i = 0; i < 11; i++) {
@try {
[box pushIn];
}
@catch (SomethingException *exception) {
NSLog(@"%@ %@", [exception name], [exception reason]);
}
@catch (SomeOverException *exception) {
NSLog(@"%@", [exception name]);
}
@finally {
[box printNumber];
}
}
运行,程序没有崩溃,打印结果:
2012-07-04 09:14:35.165 ObjectiveCTest[688:f803] Box number is: 1
2012-07-04 09:14:35.167 ObjectiveCTest[688:f803] Box number is: 2
2012-07-04 09:14:35.167 ObjectiveCTest[688:f803] Box number is: 3
2012-07-04 09:14:35.167 ObjectiveCTest[688:f803] Box number is: 4
2012-07-04 09:14:35.167 ObjectiveCTest[688:f803] Box number is: 5
2012-07-04 09:14:35.167 ObjectiveCTest[688:f803] BoxWarningException The number is above or at 60
2012-07-04 09:14:35.168 ObjectiveCTest[688:f803] Box number is: 6
2012-07-04 09:14:35.168 ObjectiveCTest[688:f803] BoxWarningException The number is above or at 60
2012-07-04 09:14:35.168 ObjectiveCTest[688:f803] Box number is: 7
2012-07-04 09:14:35.168 ObjectiveCTest[688:f803] BoxWarningException The number is above or at 60
2012-07-04 09:14:35.168 ObjectiveCTest[688:f803] Box number is: 8
2012-07-04 09:14:35.168 ObjectiveCTest[688:f803] BoxWarningException The number is above or at 60
2012-07-04 09:14:35.169 ObjectiveCTest[688:f803] Box number is: 9
2012-07-04 09:14:35.169 ObjectiveCTest[688:f803] BoxWarningException The number is above or at 60
2012-07-04 09:14:35.169 ObjectiveCTest[688:f803] Box number is: 10
2012-07-04 09:14:35.169 ObjectiveCTest[688:f803] BoxOverflowException
2012-07-04 09:14:35.225 ObjectiveCTest[688:f803] Box number is: 11
超过10时,SomeOverException异常抛出。
3.4 、小于0时的异常
在Box类的setNumber里,当number小于0时,我们抛出普通异常。
@try {
[box setNumber:-10];
}
@catch (NSException *exception) {
NSLog(@"%@",[exception name]);
}
@finally {
[box printNumber];
}
打印结果:
2012-07-04 09:17:42.405 ObjectiveCTest[753:f803] BoxUnderflowException
2012-07-04 09:17:42.406 ObjectiveCTest[753:f803] Box number is: -10
分享到:
相关推荐
在Objective-C中,异常处理通过使用`@try`, `@catch`, `@throw`, `@finally`等关键字来实现。下面我们将深入探讨Objective-C中的异常处理机制。 1. **异常的结构** Objective-C的异常是一个继承自`NSException`类...
8. Objective-C的异常处理 9. id类型 10. 类的继承 11. 动态判定与选择器 12. 类别Category 13. 协议@protocol 14. 内存管理 15. 常用的类型 16. 写入和读取属性 17. 对象的复制 18. 多线程 19. KVC 与KVO 20. 谓词...
4. **其他章节**:其他如9781430241881_ch09.zip、9781430241881_ch10.zip等文件分别对应书中其他章节,可能涵盖内存管理、消息传递、协议、异常处理、类别、初始化方法等多个Objective-C的关键概念。每个章节的代码...
压缩包内的"mysource"可能包含了该工具的源代码,开发者可以通过查看源码了解其内部实现细节,包括如何处理Java的异常处理、多线程、反射等高级特性,以及如何映射到Objective-C的相应概念。 总的来说,这个工具...
- **错误处理**:Objective-C++没有像Objective-C那样的异常处理机制,因此需要考虑如何在两者之间适当地处理错误。 理解并熟练掌握Objective-C与Objective-C++的混用是提高iOS和macOS开发效率的关键。通过实践和...
6. 异常处理(Exceptions):在Objective-C中,可以使用@try, @catch, 和@finally语句来处理异常情况,这是C语言没有的特性。 7. 继承和多态(Inheritance, Polymorphism):Objective-C支持继承,允许创建子类继承...
- **异常**:鼓励通过错误处理机制替代异常抛出,因为Objective-C的标准异常处理机制在性能上有一定开销。 - **协议**:定义协议时,应明确其目的和要求的方法,以便于类的实现和理解。 **3. 命名规则** - **...
10. **异常处理(Exception Handling)**:Objective-C支持异常处理,了解何时和如何正确使用try-catch-finally结构,有助于编写健壮的代码。 11. **GCD(Grand Central Dispatch)**:Apple的并发编程框架,它简化...
《Objective-C基础教程》是一本面向初学者的编程书籍,主要涵盖了Objective-C语言的基本概念、语法和编程实践,尤其适合那些想要踏入iOS应用开发领域的学习者。Objective-C是Apple公司开发的面向对象的编程语言,它...
5. **异常处理**:Objective-C使用`@try`、`@catch`、`@finally`块进行异常处理。 #### 四、Objective-C的高级特性 1. **协议**:协议定义了一组方法签名,指定一个类应该实现哪些方法。 2. **类别**:类别是对现有...
总的来说,Objective-C语言的核心语法包括类的定义和消息传递机制,内存管理和对象生命周期管理,以及类型系统特别是`id`、`Class`和`SEL`的使用。这些知识点对于从C++转战Objective-C的开发者来说至关重要,理解并...
根据给出的内容,我们可以总结出以下关于Objective-C编程语言的知识点,这些知识点将覆盖从Objective-C的基础知识到高级特性,以及如何在iOS移动开发中使用Objective-C: 1. Objective-C简介 Objective-C是一种面向...
- **定义**: Objective-C是一种通用、面向对象的编程语言,由C语言扩展而来。它继承了C语言的所有特性,并在此基础上增加了面向对象的功能和动态特性。 - **应用场景**: 主要用于开发苹果公司的操作系统上的应用程序...
- **异常情况(Exceptions)处理**:Objective-C支持异常处理,通过`@try`、`@catch`、`@finally`来捕获和处理运行时错误。 - **继承、多型(Inheritance, Polymorphism)**:Objective-C支持类的继承,子类可以...
10. **异常处理**:Objective-C中的错误处理模型,包括何时抛出异常,如何捕获并处理异常,以及使用NSException类的相关知识。 11. **测试与调试**:介绍如何使用Xcode进行单元测试和集成测试,以及如何调试...
在Objective-C中使用C++是iOS和Mac开发中常见的技术结合,因为Objective-C是Apple的主推编程语言,而C++则是一种强大的、通用的面向对象的语言,尤其适合处理底层计算和高性能的需求。这篇博客(<https://eric-gao....
第一部分介绍了 Objective-C 的基础知识,包括 Objective-C 的基本语法、对象、内 存管理等;第二部分深入挖掘 Objective-C 提供的一些功能,包括如何使用代码块,使用键值编码和键值观察, 使用协议,扩展现有类的...
3. **C++**: C++是在C语言基础上扩展的一种面向对象的编程语言,支持类、模板、异常处理等高级特性。C++不仅继承了C语言的高效性,还引入了面向对象编程的概念,使其在软件开发中广泛应用。 4. **TDM-GCC**: TDM-...