zoukankan      html  css  js  c++  java
  • NSAssert和NSAssertion​Handler:断言相关

     

     

     

    断言评估一个条件,如果条件为 false ,调用当前线程的断点句柄。每一个线程有它自已的断点句柄,它是一个 NSAsserttionHandler 类的对象。当被调用时,断言句柄打印一个错误信息,该条信息中包含了方法名、类名或函数名。然后,它就抛出一个 NSInternalInconsistencyException 异常。
    Assertions evaluate a condition and, if the condition evaluates to false, call the assertion handler for the current thread, passing it a format string and a variable number of arguments. Each thread has its own assertion handler, which is an object of classNSAssertionHandler. When invoked, an assertion handler prints an error message that includes method and class names (or the function name). It then raises anNSInternalInconsistencyException exception.

    这个宏用于确认一个 Objective-C 的方法的有效性。简单提供参数作为条件就行。该宏评估这个参数,如果为 false ,它就打印一个错误日志信息,该信息包含了参数并且抛出一个异常。
    This macro validates a parameter for an Objective-C method. Simply provide the parameter as the condition argument. The macro evaluates the parameter and, if it is false, it logs an error message that includes the parameter and then raises an exception.

    如果定义了预处理宏 NS_BLOCK_ASSERTIONS 断言就被禁止了。所有的断点宏都返回 void。
    Assertions are disabled if the preprocessor macro NS_BLOCK_ASSERTIONS is defined. All assertion macros return void.

     

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

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

    #if !defined(NS_BLOCK_ASSERTIONS)
    #if !defined(_NSAssertBody)
    #define NSAssert(condition, desc, ...)	
      do {				
      __PRAGMA_PUSH_NO_EXTRA_ARG_WARNINGS 
      if (!(condition)) {		
        [[NSAssertionHandler currentHandler] handleFailureInMethod:_cmd 
        object:self file:[NSString stringWithUTF8String:__FILE__] 
          lineNumber:__LINE__ description:(desc), ##__VA_ARGS__]; 
      }				
        __PRAGMA_POP_NO_EXTRA_ARG_WARNINGS 
      } while(0)
    #endif
    #if !defined(_NSCAssertBody)
    #define NSCAssert(condition, desc, ...) 
      do {				
      __PRAGMA_PUSH_NO_EXTRA_ARG_WARNINGS 
      if (!(condition)) {		
        [[NSAssertionHandler currentHandler] handleFailureInFunction:[NSString stringWithUTF8String:__PRETTY_FUNCTION__] 
        file:[NSString stringWithUTF8String:__FILE__] 
          lineNumber:__LINE__ description:(desc), ##__VA_ARGS__]; 
      }				
        __PRAGMA_POP_NO_EXTRA_ARG_WARNINGS 
      } while(0)
    #endif
    

    NSAssert/NSCAssert  两者的

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

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

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

    NSAssert的用法

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

    NSParameterAssert的用法

    - (void)assertWithPara:(NSString *)str
    {
        NSParameterAssert(str); //只需要一个参数,如果参数存在程序继续运行,如果参数为空,则程序停止打印日志
        //further code ...
    }
    // 如果str 为空则有如下类似的日志
    *** 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的子类

    @interface MyAssertHandler : NSAssertionHandler
    @end
    #import "MyAssertHandler.h"
    @implementation MyAssertHandler
    //处理Objective-C的断言
    - (void)handleFailureInMethod:(SEL)selector object:(id)object file:(NSString *)fileName lineNumber:(NSInteger)line description:(NSString *)format,...
    {
      NSLog(@"NSAssert Failure: Method %@ for object %@ in %@#%li", NSStringFromSelector(selector), object, fileName, (long)line);
    }
    //处理C的断言
    - (void)handleFailureInFunction:(NSString *)functionName file:(NSString *)fileName lineNumber:(NSInteger)line description:(NSString *)format,...
    {
      NSLog(@"NSCAssert Failure: Function (%@) in %@#%li", functionName, fileName, (long)line);
    }
    @end
    

    给线程添加处理类

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

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

  • 相关阅读:
    hive on tez 异常
    mysql 集群异常
    Linux abrt-hook-ccpp使用CPU和内存太多,导致其他ambari server 服务启动时报内存溢出
    Ambari 配置kerberos以后,,启动hiveserver2异常
    spring-data-jpa更新数据InvalidDataAccessApiUsageException:Executing an update/delete query
    mac软件思维导图(2020-10-11)
    Error: Invalid or corrupt jarfile
    springboot使用xml配置dubbo读取yml占位符
    ElasticSearch批量写入时遇到EsRejectedExecutionException
    ZYNQ Linux 移植:包含petalinux移植和手动移植debian9
  • 原文地址:https://www.cnblogs.com/YH-Coding/p/5314737.html
Copyright © 2011-2022 走看看