我有以下代码:
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <iostream>
typedef uint64_t Huge_num; // 8 bytes
typedef Huge_num * Huge_Arr; // Array of 8 byte elements
using namespace std;
// Function: Return a huge array
static Huge_Arr* requestMem(int n)
{
cout << "requesting :"
<< (sizeof(Huge_num)*n)/(1024*1024*1024)
<< "GB" << endl;
Huge_Arr *buff;
try {
buff = new Huge_Arr[n];
}
catch (bad_alloc){
cout << "Not enough mem!" << endl;
exit(-1);
}
return buff;
}
// Main
int main(){
for (int i=1; i< 10; i++){
Huge_Arr *mem = requestMem(i*90000000);
delete mem;
}
}
bad_alloc()
由于某种原因,malloc 在抛出错误之前只能获取不超过 2GB 的内存。
我知道在 32 位系统上,最大地址空间确实在 2GB 的相同数量级。
但我使用的是 Ubuntu 12.04 x86_64,它应该能够处理更大的内存请求,对吧?
编辑:原来答案是我正在用g++ -std=c00x
32 位编译?不确定,无论哪种方式,我都更改了 Makefile 以删除-std
标志,并且编译得很好