如何避免下面代码中的bad_alloc
错误。它说C
叫abort
函数:
terminate called after throwing an instance of 'std::bad_alloc'
what(): std::bad_alloc
SIGABRT
#include<iostream>
#include<math.h>
#include<conio.h>
using namespace std;
int main()
{
int n,p,count=0;
double l,t;
while(1)
{
cin>>n;
if(n==0)
break;
else
{
int * arr;
arr= new int[n+1];
for (int i=1; i<=n; i++)
arr[i]=0;
for(int i=2;i<=n;i++){
if(arr[i]==0)
{ p=i;
count++;
for (int j=2;p*j<=n;j++)
{
arr[p*j]=1;
}
}
}
delete[] arr;
l=(double(n))/(log(n));
t=(((count-l))/count)*100;
if(t<0)
t=(-1)*t;
printf("%.1lf\n",t);
}
count=0;
}
getch();
return 0;
}
答案 0 :(得分:1)
虽然可用RAM将限制您可以分配的内存量,但您可以通过try {...} catch(std::bad_alloc& err) {...}
块处理异常。一旦捕获std::bad_alloc
异常,在返回分配更多内存之前尝试释放一些内存(如果可以)。另外,你可能想查看某种类型的内存池,如果你要做一堆小的分配,因为分配和释放小块内存会随着时间的推移产生内存碎片问题,因为有足够的内存来继续分配块,但没有足够的连续内存来进行有效分配。通过拥有自己的池,您可以通过优化小块的分配等来更好地处理碎片问题。