开发者

Using a checked STL implementation, anything available for free?

  1. Have you used a checked STL implementation?
  2. Did it find bugs you were not expecting?
  3. Is ther开发者_如何学JAVAe one I can try on Linux for free?


The GNU implementation of the standard C++ library that comes with GCC has checked STL. Just add -D_GLIBCXX_DEBUG to your command line.

Yes, I've used it. I can't say for sure if it's caught bugs but it gives me more confidence that certain classes of bugs aren't being missed.

Because of performance overhead, we only use checked STL for debug builds.


I have not used it ever, but a quick search shows that STLPort has checked iterators in DEBUG mode.


  1. Microsoft's VC++ implements checking.
  2. It easily catches places where iterators refer to memory out-of-bounds of the STL container to which it belongs.
  3. I'm not sure, but I think you should try the Boost C++ library. It has myriad variety of features including concept checking, etc. Heck, its become the basis for the C++0x standard!
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜