首页 技术 正文
技术 2022年11月15日
0 收藏 355 点赞 3,066 浏览 3242 个字

NSAssert和assert是断言,主要的差别是assert在断言失败的时候只是简单的终止程序,而NSAssert会报告出错误信息并且打印出来.所以尽管的使用NSAssert,可以不去使用assert.

iOS中用的最多的是两对断言, NSAssert/NSCAssert 和 NSParameterAssert/NSCparameterAssert. 要知道他们的区别,我们先来看看他们定义.

  1. #if !defined(NS_BLOCK_ASSERTIONS)
  2. #if !defined(_NSAssertBody)
  3. #define NSAssert(condition, desc, …)  \
  4. do {                \
  5. __PRAGMA_PUSH_NO_EXTRA_ARG_WARNINGS \
  6. if (!(condition)) {     \
  7. [[NSAssertionHandler currentHandler] handleFailureInMethod:_cmd \
  8. object:self file:[NSString stringWithUTF8String:__FILE__] \
  9. lineNumber:__LINE__ description:(desc), ##__VA_ARGS__]; \
  10. }               \
  11. __PRAGMA_POP_NO_EXTRA_ARG_WARNINGS \
  12. } while(0)
  13. #endif
  14. #if !defined(_NSCAssertBody)
  15. #define NSCAssert(condition, desc, …) \
  16. do {                \
  17. __PRAGMA_PUSH_NO_EXTRA_ARG_WARNINGS \
  18. if (!(condition)) {     \
  19. [[NSAssertionHandler currentHandler] handleFailureInFunction:[NSString stringWithUTF8String:__PRETTY_FUNCTION__] \
  20. file:[NSString stringWithUTF8String:__FILE__] \
  21. lineNumber:__LINE__ description:(desc), ##__VA_ARGS__]; \
  22. }               \
  23. __PRAGMA_POP_NO_EXTRA_ARG_WARNINGS \
  24. } while(0)
  25. #endif

NSAssert/NSCAssert 两者的差别通过定义可以看出来, 前者是适合于Objective-C的方法,_cmd 和 self 与运行时有关. 后者是适用于C的函数.

NSParameterAssert/NSCparameterAssert两者的区别也是前者适用于Objective-C的方法,后者适用于C的函数.

NSAssert/NSCAssert 和 NSParameterAssert/NSCparameterAssert 的区别是前者是所有断言, 后者只是针对参数是否存在的断言, 所以可以先进行参数的断言,确认参数是正确的,再进行所有的断言,确认其他原因.

NSAssert的用法

  1. int a = 4;
  2. NSAssert(a == 5, @”a must equal to 5″); //第一个参数是条件,如果第一个参数不满足条件,就会记录和打印第二个参数
  1. //回记录并打印断言日志
  2. *** Assertion failure in -[AppDelegate application:didFinishLaunchingWithOptions:], /Users/admin/Desktop/storyboard/storyboard/AppDelegate.m:36
  3. *** Terminating app due to uncaught exception ‘NSInternalInconsistencyException’, reason: ‘a must equal to 5

NSParameterAssert的用法

  1. – (void)assertWithPara:(NSString *)str
  2. {
  3. NSParameterAssert(str); //只需要一个参数,如果参数存在程序继续运行,如果参数为空,则程序停止打印日志
  4. //further code …
  5. }
  1. // 如果str 为空则有如下类似的日志
  2. *** Assertion failure in -[AppDelegate assertWithPara:], /Users/admin/Desktop/storyboard/storyboard/AppDelegate.m:45<pre name=”code” class=”objc”>*** Terminating app due to uncaught exception ‘NSInternalInconsistencyException’, reason: ‘Invalid parameter not satisfying: str’


   Xcode 已经默认将release环境下的断言取消了, 免除了忘记关闭断言造成的程序不稳定.

NSAssertionHandler:自定义处理方法,程序不会直接崩溃

NSAssertionHandler实例是自动创建的,用于处理错误断言。如果NSAssert和NSCAssert条件评估为错误,会向NSAssertionHandler实例发送一个表示错误的字符串。每个线程都有它自己的NSAssertionHandler实例。

自定义NSAssertionHandler的子类

  1. @interface MyAssertHandler : NSAssertionHandler
  2. @end
  1. #import “MyAssertHandler.h”
  2. @implementation MyAssertHandler
  3. //处理Objective-C的断言
  4. – (void)handleFailureInMethod:(SEL)selector object:(id)object file:(NSString *)fileName lineNumber:(NSInteger)line description:(NSString *)format,…
  5. {
  6. NSLog(@”NSAssert Failure: Method %@ for object %@ in %@#%li”, NSStringFromSelector(selector), object, fileName, (long)line);
  7. }
  8. //处理C的断言
  9. – (void)handleFailureInFunction:(NSString *)functionName file:(NSString *)fileName lineNumber:(NSInteger)line description:(NSString *)format,…
  10. {
  11. NSLog(@”NSCAssert Failure: Function (%@) in %@#%li”, functionName, fileName, (long)line);
  12. }
  13. @end

给线程添加处理类

  1. NSAssertionHandler *myHandler = [[MyAssertHandler alloc] init];
  2. //给当前的线程
  3. [[[NSThread currentThread] threadDictionary] setValue:myHandler
  4. forKey:NSAssertionHandlerKey];

实现这些以后,程序能够获得断言失败后的信息,但是程序有可能继续运行,不会强制退出程序.

 

相关推荐
python开发_常用的python模块及安装方法
adodb:我们领导推荐的数据库连接组件bsddb3:BerkeleyDB的连接组件Cheetah-1.0:我比较喜欢这个版本的cheeta…
日期:2022-11-24 点赞:878 阅读:8,994
Educational Codeforces Round 11 C. Hard Process 二分
C. Hard Process题目连接:http://www.codeforces.com/contest/660/problem/CDes…
日期:2022-11-24 点赞:807 阅读:5,507
下载Ubuntn 17.04 内核源代码
zengkefu@server1:/usr/src$ uname -aLinux server1 4.10.0-19-generic #21…
日期:2022-11-24 点赞:569 阅读:6,350
可用Active Desktop Calendar V7.86 注册码序列号
可用Active Desktop Calendar V7.86 注册码序列号Name: www.greendown.cn Code: &nb…
日期:2022-11-24 点赞:733 阅读:6,135
Android调用系统相机、自定义相机、处理大图片
Android调用系统相机和自定义相机实例本博文主要是介绍了android上使用相机进行拍照并显示的两种方式,并且由于涉及到要把拍到的照片显…
日期:2022-11-24 点赞:512 阅读:7,768
Struts的使用
一、Struts2的获取  Struts的官方网站为:http://struts.apache.org/  下载完Struts2的jar包,…
日期:2022-11-24 点赞:671 阅读:4,845