c++断言机制的应用

来自http://www.suodenjoki.dk/us/archive/2011/assert.htm

C++ assert

You might not agree but I believe this article/blogpost is the definitive guide for using assert in C++.

C++ assert() macro is defined in cassert header file. In C it is defined in assert.h file.

An assert is documentation that reason about how the design and the code should work. They are pre-conditions, post-conditions and loop invariants that the programmer make up to document expectations for a programs execution. As such, it is the programmers contract with his design understanding.

As such they are a very important for understanding how the program work. If an assert fires and you do not agree with it, do not just remove it. However, make sure that the reasoning in the assert and the surrounding comments (design documentation) are correct. If you are unsure about what the reasoning is, it should be brought up for discussion. Otherwise you easily end up in a situation in where programmers understands and develops the code opposed to one another. It is hardly a good thing for the program code if the programmers thwarts each other.

Best Practices

  • Don't use assert for error handling. It is not intended for this. It has nothing to do with error handling or exception handling at all.
  • Assert can be used as a kind of unit test mechanism, but they are not intended for that. We should not use them as alternative for unit tests.
  • Always write surrounding comments explaining why the assert is inserted - what it guards against or what it "protects". Also describe the most likely causes for why the assert has triggered. The explanations should guide the programmer to correct his code that are causing the assert.
  • It might be a good idea to write your initials or other contact information so that other programmers can contact you if discussion is needed.
  • assert(false) may be used as an alternative for "not implemented", but this must be documented in surrounding comments.

A major advantage of using asserts is that when an error does occur it is detected immediately and directly, rather than causing problems later through often obscure side-effects. Since an assertion failure usually reports the code location, one can often pin-point the error without further debugging. In some systems, e.g Windows, the assert will be shown in a window with buttons that allow you to ignore the assert, i.e. the program continues, or open/start the debugger with the assert line of code in focus. In other systems, e.g. Unix/Linus, the assert will abort the program and trigger a core dump.

Temporarily turning off asserts?

However if you get an assert it may be in a piece of code that is totally unrelated to the task at hand. Should you spend time immediately to fix the problem that the assert is telling you about? Well, if you can you should definitely do it. But often, you do not have enough understanding of the code surrounding the assert or the responsible developers is unavailable for discussion. In this case the assertion, becomes an obstruction for your task in hand. It is indeed annoying to have to click Ignore to several assert-windows popping up. It would be nice if you at runtime can turn off assertions temporarily. This may be possible if you wrap and use your own assert macroinstead of the builtin assert() macro. The wrapper may be guarded by a if-statement checking a global variable that you can turn on/off for whether you want assertions to be shown or not. If you want can also output the assert to a log file.

Note that this is different than setting/defining the NDEBUG macro that compiles away all the asserts. Using NDEBUG will not make it possible for you to turn asserts on/off at runtime. NDEBUG is only recommended when compiling release builds.

Sources and More:


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值