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

后端 未结 7 1330
小蘑菇
小蘑菇 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:20

    If the allocation numbers (the ones in the curled braces) are always the same, this could help. Basically, it described how to make VC++ generate a breakpoint when the allocation with the specified number is attempted.

提交回复
热议问题