摘要:
http://blog.csdn.net/supermegaboy/article/details/4854965The right-left rule: Start reading the declaration from the innermost parentheses, go right, and then go left. When you encounter parentheses, the direction should be reversed. Once everything in the parentheses has been parsed, jump out of it 阅读全文
摘要:
http://blog.csdn.net/xxxluozhen/article/details/6611663http://www.codeproject.com/KB/exception/MakingYourCodeRobust.aspxMaking your C++ code robustIntroduction在实际的项目中,当项目的代码量不断增加的时候,你会发现越来越难管理和跟踪其各个组件,如其不善,很容易就引入BUG。因此、我们应该掌握一些能让我们程序更加健壮的方法。这篇文章提出了一些建议,能有引导我们写出更加强壮的代码,以避免产生灾难性的错误。即使、因为其复杂性和项目团队结构,你的 阅读全文