摘要: 转载自:http://blog.csdn.net/may_he/article/details/8549358LLDBGDBLaunch a process no arguments.(lldb)process launch(lldb)run(lldb)r(gdb)run(gdb)rLaunch a process with arguments.(lldb)process launch -- (lldb)r (gdb)run (gdb)r Launch a process for with argumentsa.out 1 2 3without having to supply the arg 阅读全文
posted @ 2014-03-15 16:54 循环 阅读(1506) 评论(0) 推荐(0) 编辑
摘要: 转载自:http://blog.sina.com.cn/s/blog_71715bf8010166qf.html开篇大话:Object-C语言的异常处理符号和C++、JAVA相似。再加上使用NSException,NSError或者自定义的类,你可以在你的应用程序里添加强大的错误处理机制。异常处理机制是由这个四个关键字支持的:@try,@catch,@thorw,@finally。当代码有可能出现异常时,我们把他放到@try语句块中。@catch()块包含了处理@try块里的抛出的异常的逻辑。无论异常是否发生,@finally块里面的语句都会执行。如果直接使用@throw块来抛出异常,这个异常 阅读全文
posted @ 2014-03-15 16:29 循环 阅读(125) 评论(0) 推荐(0) 编辑