一个程序可以分配多少内存?

How much memory a program can allocate?

我可以为 Linux 下的 C++ 程序 运行 分配多少内存?在我的测试用例中,使用 newmalloc 可以分配超过 170Gb 的内存。 作为对比,同样的代码只能在windows分配1.8G然后终止

我的测试机,一台是使用virtual box的虚拟机,centos7 64位,2Gb内存。主机是win10 64位,内存8Gb.

使用free命令的截图,

下面是测试代码,

#include<iostream>
#include <unistd.h>

 #define EVERY_ALLOC_MEM 1024 * 1014 // 1Mb
int main(int argc, char *argv[])
{
    std::cout << getpid() << ":" << argv[0] << std::endl;
    for (size_t i = 0; ; i++)
    {
        //char* mem = new char[EVERY_ALLOC_MEM];
        char* mem = (char*)malloc(EVERY_ALLOC_MEM);
        std::cout << "used " << i  << "Mb, that is " << i * 1024 << "Kb, and " << (float)i/1024 << "Gb"<< std::endl;       
    }
    return 0;
}

这确实是Linux的内存优化技术。如果您尝试写入已分配的内存,例如 memset(mem, 0, EVERY_ALLOC_MEM),它将被泄露。这与页面错误有关。