检测和监控 Windows 系统上的 RAM 使用情况
我想检查我正在开发的程序使用了多少 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
任务管理器内存使用情况/虚拟机大小列可以公平地指示您的应用程序在特定时间点消耗的内存量。 “峰值内存使用情况”列为您提供了您期望的指标 - 因此也可能很有用。
磁盘上 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!