web-dev-qa-db-ja.com

C ++のWindowsでメモリ使用量を取得する方法

私は、アプリケーションがプログラム自体からどのくらいのメモリを消費しているかを調べようとしています。探しているメモリ使用量は、Windowsタスクマネージャの[プロセス]タブの[メモリ使用量]列に報告されている数です。

43
Brian Stewart

適切な出発点は GetProcessMemoryInfo です。これは、指定されたプロセスに関するさまざまなメモリ情報を報告します。呼び出しプロセスに関する情報を取得するために、プロセスハンドルとしてGetCurrentProcess()を渡すことができます。

おそらくPROCESS_MEMORY_COUNTERSWorkingSetSizeメンバーは、タスクマネージャーのMem Usage coulmnに最も一致しますが、まったく同じになるわけではありません。さまざまな値を試して、ニーズに最も近い値を見つけます。

45
Charlie

これはあなたが探していたものだと思います:

#include<windows.h>
#include<stdio.h>   
#include<tchar.h>

// Use to convert bytes to MB
#define DIV 1048576

// Use to convert bytes to MB
//#define DIV 1024

// Specify the width of the field in which to print the numbers. 
// The asterisk in the format specifier "%*I64d" takes an integer 
// argument and uses it to pad and right justify the number.

#define WIDTH 7

void _tmain()
{
  MEMORYSTATUSEX statex;

  statex.dwLength = sizeof (statex);

  GlobalMemoryStatusEx (&statex);


  _tprintf (TEXT("There is  %*ld percent of memory in use.\n"),WIDTH, statex.dwMemoryLoad);
  _tprintf (TEXT("There are %*I64d total Mbytes of physical memory.\n"),WIDTH,statex.ullTotalPhys/DIV);
  _tprintf (TEXT("There are %*I64d free Mbytes of physical memory.\n"),WIDTH, statex.ullAvailPhys/DIV);
  _tprintf (TEXT("There are %*I64d total Mbytes of paging file.\n"),WIDTH, statex.ullTotalPageFile/DIV);
  _tprintf (TEXT("There are %*I64d free Mbytes of paging file.\n"),WIDTH, statex.ullAvailPageFile/DIV);
  _tprintf (TEXT("There are %*I64d total Mbytes of virtual memory.\n"),WIDTH, statex.ullTotalVirtual/DIV);
  _tprintf (TEXT("There are %*I64d free Mbytes of virtual memory.\n"),WIDTH, statex.ullAvailVirtual/DIV);
  _tprintf (TEXT("There are %*I64d free Mbytes of extended memory.\n"),WIDTH, statex.ullAvailExtendedVirtual/DIV);


}
19
Ronin

GetProcessMemoryInfoは、探している関数です。 MSDNのドキュメントは、正しい方向を示します。渡すPROCESS_MEMORY_COUNTERS構造体から必要な情報を取得します。

Psapi.hを含める必要があります。

8
Adzm

GetProcessMemoryInfo をご覧ください。私はそれを使用していませんが、必要なもののように見えます。

7
Mark Ransom