我之前发了一个帖子询问检查内存泄漏等问题,我确实说我不熟悉 linux 中的终端,但有人对我说使用 valgrind 很容易
我已经设法让它运行等,但不确定输出的含义。扫了一眼,对我来说一切都很好,但如果可能的话,我想通过你的经验来确认。输出如下
^C==2420==
==2420== HEAP SUMMARY:
==2420== in use at exit: 2,240 bytes in 81 blocks
==2420== total heap usage: 82 allocs, 1 frees, 2,592 bytes allocated
==2420==
==2420== LEAK SUMMARY:
==2420== definitely lost: 0 bytes in 0 blocks
==2420== indirectly lost: 0 bytes in 0 blocks
==2420== possibly lost: 0 bytes in 0 blocks
==2420== still reachable: 2,240 bytes in 81 blocks
==2420== suppressed: 0 bytes in 0 blocks
==2420== Reachable blocks (those to which a pointer was found) are not shown.
==2420== To see them, rerun with: --leak-check=full --show-reachable=yes
==2420==
==2420== For counts of detected and suppressed errors, rerun with: -v
==2420== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 13 from 8)
这里一切都好吗?唯一与我有关的是仍然可以到达的部分。那样行吗?
感谢大家