memory leak detecting in C++ with/without Visual Leak Detector

后端 未结 7 1328
小蘑菇
小蘑菇 2020-12-13 22:31

I want to detect memory leaks of my C++ program in Windows. I read the documentation also on MSDN about mermoy leak detection and I also started using Visua

相关标签:
7条回答
  • 2020-12-13 23:23

    Rational Purify is available as a for-money plugin for VC++, and is a very good leak (and other trouble) detector. I used to use it a lot on Solaris, and it was very easy to use and clear. I've also heard good things from other people about the version for use with Visual Studio, but I've never actually tried that.

    FWIW, I suspect that Purify was the inspiration for Valgrind, which has already been mentioned.

    0 讨论(0)
提交回复
热议问题