What is the best way to check for memory leaks in c++?

前端 未结 4 1735
迷失自我
迷失自我 2020-12-10 15:21

I\'m implementing a sparse matrix with linked lists and it\'s not fun to manually check for leaks, any thoughts?

4条回答
  •  眼角桃花
    2020-12-10 16:01

    The original version of Purify on Unix was brilliant. But the Windows version produced after Rational bought it is terrible. Flakey as hell. Avoid at all costs.

提交回复
热议问题