一直聽說iOS有異常處理機制,卻從來沒有關系過,今天小生就來關心下iOS的異常處理機制吧。
Cup *cup = [[Cup alloc] init];
@try { [cup fill];
} @catch (NSException *exception) {
NSLog(@"main: Caught %@: %@", [exception name], [exception reason]);
} @finally {
[cup release];
}
拋出異常
為了擲出一個異常,我們必須實例化一個對象,當然這個對象要包含相關的信息,比如異常的名字和為什么要擲出他。
NSException *exception = [NSException exceptionWithName:@"HotTeaException" reason:@"The tea is too hot" userInfo:nil];
@throw exception;
(好吧 我承認國外的程序員挺有愛的。)
和@catch()塊相反,你可以使用@throw再次擲出一個被抓到的異常,不用加參數哦親。這個能使你的代碼更可讀。(我怎么沒看出來)
Listing 9-1An exception handler @try {
...
} @catch (CustomException *ce) { //1
...
} @catch (NSException *ne) { //2
// Perform processing necessary at this level. ...
// Rethrow the exception so that it's handled at a higher level. @throw;
} @catch (id ue) { //3
...
} @finally { //4
// Perform processing necessary whether an exception occurred or not. ...
}
文章列表