码迷,mamicode.com
首页 > 编程语言 > 详细

【算法】main函数的堆栈溢出

时间:2019-11-21 13:41:12      阅读:99      评论:0      收藏:0      [点我收藏+]

标签:static   异常   exit   main   bit   div   process   ret   second   

main函数的堆栈的大小默认为1mb

如果把数组int x[1000][1000]定义在main函数里

则int为4byte,8bit为1byte,1024byte为1kb,1024kb为1mb

4*1000*1000/1024/1024=3.814697265625mb大于1mb,

所以定义在main函数中会出现堆栈溢出的异常

#include<bits/stdc++.h>
using namespace std;
int main(){
    int x[1000][1000];
    return 0; 
} 

 结果

--------------------------------
Process exited after 3.482 seconds with return value 3221225725
请按任意键继续. . .

 

解决办法是将数组定义在main函数外static静态分配储存空间

建议在竞赛中尽量将数组定义在main函数外

#include<bits/stdc++.h>
using namespace std;
int x[1000][1000];
int main(){
    return 0; 
} 

 

【算法】main函数的堆栈溢出

标签:static   异常   exit   main   bit   div   process   ret   second   

原文地址:https://www.cnblogs.com/LPworld/p/11904819.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!