//显示当前程序的内存使用情况
void LogCurrentProcessMemoryInfo()
{
HANDLE handle=GetCurrentProcess();
PROCESS_MEMORY_COUNTERS_EX pmc = {0};
int a = sizeof(pmc);
if (!GetProcessMemoryInfo(handle,(PROCESS_MEMORY_COUNTERS*)&pmc,sizeof(pmc)))
{
DWORD errCode = GetLastError();
DEBUG_TRACE("GetProcessMemoryInfo fail, lastErrorCode:%d",errCode);
return;
}
CString strInfo;
//占用的物理内存峰值
strInfo.Format("PeakWorkingSetSize:%d(KB)\n",pmc.PeakWorkingSetSize/1024);
OutputDebugString(strInfo);
//当前占用的物理内存
strInfo.Format("WorkingSetSize:%d(KB)\n",pmc.WorkingSetSize/1024);
OutputDebugString(strInfo);
//占用的虚拟内存峰值(物理内存+页文件),对应任务管理器中的commit列值
strInfo.Format("PeakPagefileUsage:%d(KB)\n",pmc.PeakPagefileUsage/1024);
OutputDebugString(strInfo);
//当前占用的虚拟内存(物理内存+页文件),对应任务管理器中的commit列值
strInfo.Format("PagefileUsage:%d(KB)\n",pmc.PagefileUsage/1024);
OutputDebugString(strInfo);
//等同于当前占用的虚拟内存(物理内存+页文件),对应任务管理器中的commit列值,并不是任务管理器中的私有独占内存的意思。
strInfo.Format("PrivateUsage:%d(KB)\n",pmc.PrivateUsage/1024);
OutputDebugString(strInfo);
}
//显示整个windows系统内存使用情况
void LogSystemMemoryInfo()
{
MEMORYSTATUSEX sysMemStatus;
sysMemStatus.dwLength = sizeof (sysMemStatus);
if (!GlobalMemoryStatusEx (&sysMemStatus))
{
DWORD errCode = GetLastError();
DEBUG_TRACE("GlobalMemoryStatusEx fail, lastErrorCode:%d",errCode);
return;
}
int DIV = 1024*1024;
CString strInfo;
//物理内存已使用得百分比
strInfo.Format("percent of memory in use:%ld\n",sysMemStatus.dwMemoryLoad);
OutputDebugString(strInfo);
//物理内存得总大小
strInfo.Format("total MB of physical memory:%I64d\n",sysMemStatus.ullTotalPhys/DIV);
OutputDebugString(strInfo);
//物理内存可用大小
strInfo.Format("free MB of physical memory:%I64d\n",sysMemStatus.ullAvailPhys/DIV);
OutputDebugString(strInfo);
//系统整个虚拟内存总大小(物理内存+页文件)
strInfo.Format("total MB of paging file :%I64d\n",sysMemStatus.ullTotalPageFile/DIV);
OutputDebugString(strInfo);
//系统可用虚拟内存大小
strInfo.Format("free MB of paging file :%I64d\n",sysMemStatus.ullAvailPageFile/DIV);
OutputDebugString(strInfo);
//当前进程虚拟内存大小(32位程序通常是2G,还有2G被内核占用)
strInfo.Format("total MB of virtual memory:%I64d\n",sysMemStatus.ullTotalVirtual/DIV);
OutputDebugString(strInfo);
//当前进程可使用得虚拟内存大小(32未程序通常小于2G,我得电脑显示1.8G,但实际调用new时只能分配大约1.5G,有300G不知道什么原因被预留了。
strInfo.Format("free MB of virtual memory:%I64d\n",sysMemStatus.ullAvailVirtual/DIV);
OutputDebugString(strInfo);
//扩展内存,预留字段,当前固定为0
strInfo.Format("free MB of extended memory:%I64d\n",sysMemStatus.ullAvailExtendedVirtual/DIV);
OutputDebugString(strInfo);
}
关于windows内存的概念,这里稍微提一下:从应用程序角度来看,都使用的虚拟内存,系统的总虚拟内存大小为(物理内存+页文件)合并而成的总大小,每一个32位程序理论上都可以使用接近2G的虚拟内存,无论系统的总虚拟内存有多大,只要32位程序已经占用了接近2G的内存,就不能再获得内存了,继续new会抛出内存不足的异常。但并不是每个32位程序都能使用接近2G的内存,如果整个系统的虚拟内存不足,那么新程序可能连1M的内存都无法获得,也会抛出内存不足的异常,甚至无法启动。整体虚拟内存大小可以通过“我的电脑”-“属性”-“高级系统设置”里面继续深入找到虚拟内存设置,如果不启用页文件,那么整个系统的虚拟内存就是物理内存条提供的内存大小,如果开启了页文件,则虚拟内存为二者之和,因此如果你的电脑物理内存太小不能运行足够多的程序,你可以通过调大页文件来增加虚拟内存,从而支持更多程序运行。