检测和监控 Windows 系统上的 RAM 使用情况

发布于 2024-09-11 01:40:53 字数 138 浏览 7 评论 0原文

我想检查我正在开发的程序使用了多少 RAM,我想知道有哪些方法/程序可以做到这一点?有没有一种简单的方法可以“预测”这一点? (即,DLL 直接加载到 RAM 中,对吗?因此,DLL 的文件大小将表明它们占用了多少 RAM?我是否正确?)

谢谢!

I would like to check how much RAM a program I am working on is using, and I was wondering what methods/programs are available that can do this? Is there an easy way to "predict" this? (ie, DLLs are loaded directly into RAM, right? Thus, the file sizes of the DLLs would indicate how much RAM they take up? Am I correct?)

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

只是偏爱你 2024-09-18 01:40:53

任务管理器内存使用情况/虚拟机大小列可以公平地指示您的应用程序在特定时间点消耗的内存量。 “峰值内存使用情况”列为您提供了您期望的指标 - 因此也可能很有用。

磁盘上 DLL 的大小并不能公平地表明 DLL 在加载后将使用多少内存 - DLL 中的代码可以根据需要自由动态分配内存,因此,例如,如果需要,5K DLL 可以分配 32GB!

Task Manager Mem Usage / VM Size columns give a fair indication of the amount of memory your application is consuming at a particular point in time. The Peak Mem Usage column gives you the metric you would expect - so could be useful as well.

The size of a DLL on disk is not a fair indication of how much memory that DLL will use once loaded - the code within the DLL is free to allocate memory dynamically as required, so e.g. a 5K DLL could allocate 32GB if it so desires!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文