29,049
社区成员




@try {
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
@try {
NSException *e = [NSException exceptionWithName:@"eTest" reason:@"test" userInfo:nil];
@throw e;
}
@catch (NSException *exception) {
i = 1;
@throw;
}
@finally {
i = 2;
[pool release];
}
}
@catch (NSException *exception) {
i = 3;
}
@finally {
i = 4;
}
NSLog(@"%d", i);