Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
嘿,我想检查运行时在内存中为我的 C 程序分配了多少内存,因为如果我知道我的程序使用了多少内存,我想减小程序的大小,那么它有助于我减小大小. 所以任何人都可以告诉我如何在 C 中做到这一点?
在 Windows 上:
右键单击TaskBar(Windows 7/ Windows 8) &CTRL+ALT+DEL在 Windows XP 上,单击 Start Task Mananger。将弹出一个窗口,转到Performance tab并单击Resource Moniter按钮。将弹出一个新窗口。在列表中找到您的进程Memory section。
TaskBar
CTRL+ALT+DEL
Task Mananger
Performance tab
Resource Moniter
Memory section
在 Linux 上:
获取进程的 pid 并键入top -p PID. 它将显示有关进程的信息,包括已使用的系统内存百分比。
top -p PID