我想用+[NSException exceptionWithName:reason:userInfo:]
.
但是我应该使用什么字符串作为参数Name:
?
异常名称在项目中应该是唯一的吗?
或者我可以使用 @"MyException" 来处理我的所有异常?
而且我不知道使用什么异常名称。
异常名称在哪里使用?
我想用+[NSException exceptionWithName:reason:userInfo:]
.
但是我应该使用什么字符串作为参数Name:
?
异常名称在项目中应该是唯一的吗?
或者我可以使用 @"MyException" 来处理我的所有异常?
而且我不知道使用什么异常名称。
异常名称在哪里使用?
您可以使用 in 中的名称@catch (NSException *theErr)
。
@catch (NSException *theErr)
{
tst_name = [theErr name];
if ([tst_name isEqualToString:@"name"])
}
我应该使用什么字符串作为参数名称:?
任何有意义的事。
异常名称在项目中应该是唯一的吗?
不。
或者我可以使用 @"MyException" 来处理我的所有异常?
是的,但您应该使用有意义的名称。
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification {
// Insert code here to initialize your application
NSNumber *tst_dividend, *tst_divisor, *tst_quotient;
// prepare the trap
@try
{
// initialize the following locals
tst_dividend = [NSNumber numberWithLong:8];
tst_divisor = [NSNumber numberWithLong:0];
// attempt a division operation
tst_quotient = [self divideLong:tst_dividend by:tst_divisor];
// display the results
NSLog (@"The answer is: %@", tst_quotient);
}
@catch (NSException *theErr)
{
// an exception has occured
// display the results
NSLog (@"The exception is:\n name: %@\nreason: %@"
, [theErr name], [theErr reason]);
}
@finally
{
//...
// the housekeeping domain
//...
}
}
- (NSNumber *)divideLong:(NSNumber *)aDividend by:(NSNumber *)aDivisor
{
NSException *loc_err;
long loc_long;
// validity check
loc_long = [aDivisor longValue];
if (loc_long == 0)
{
// create and send an exception signal
loc_err = [NSException
exceptionWithName:NSInvalidArgumentException
reason:@"Division by zero attempted"
userInfo:nil];
[loc_err raise]; //locate nearest exception handler,
//If the instance fails to locate a handler, it goes straight to the default exception handler.
}
else
// perform the division
loc_long = [aDividend longValue] / loc_long;
// return the results
return ([NSNumber numberWithLong:loc_long]);
}
最终,以这种方式添加异常的目的是尽快发现问题、报告问题并进行诊断。
因此,您是否选择项目独有的异常名称,或特定于问题的异常名称(即源代码行、方法)取决于哪个将为您提供最佳诊断信息。
异常名称可以在您的应用程序之间共享,因为它们将由应用程序报告以识别异常的来源。