首页 > 移动平台 > 详细

iOS中异常处理机制使用小结

时间:2021-05-19 17:01:22      阅读:18      评论:0      收藏:0      [点我收藏+]

  在iOS开发中经常会由于数组越界,添加数据为空,通信或者文件错误,内存溢出导致程序终端运行而引入异常处理机制。常用的处理方式是try catch机制。不过有几个专业术语需要解释,异常句柄、异常处理域断言。

  @try {

        //Code that can potentially throw an exception 异常处理域 记述代码正常处理

        

    } @catch (NSException *exception) {

        //Handle an exception thrown in the @try block 异常句柄 记录异常处理过程

    } @finally {

        //Code that gets executed whether or not an exception is thrown 记录无论异常是否发生都会执行的代码

    }

  断言指的是代码正常运行满足的条件被破坏引发的异常,了解即可。目前的解决方案就是添加try catch,数组非空验证,索引数量验证,继续学习中。

iOS中异常处理机制使用小结

原文:https://www.cnblogs.com/bigant9527/p/14785005.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!