http://news.newhua.com/news1/program_language/2007/1217/071217131014K1575J4A8033BGB0JJE8.html<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" />
我们都知道,c/c++程序的内存分配,有这样几个存储区。
全局/静态数据区:存储全局变量,和静态变量static声明的变量
常量存储区:存储常量,如char *s="abcde"; 或者 const int i =10;代码区:这个不说了。代码放的地儿
栈:临时变量,参数等,有大小限制,vc6/7: <?xml:namespace prefix = st1 ns = "urn:schemas-microsoft-com:office:smarttags" />1M
堆: 用户自己维护的空间,内存使用需要自己申请,自己释放。大小基本不限(4G)
example:
#include <iostream>
using namespace std;
int global = 100; //全局/静态区
const int N = 10; //常量区
int main()
{
static int a = 0; //全局/静态区
char arr[100]="test";//arr分配在栈上,"test"分配到常量区,还有一个副本在栈上
char *s = "abcde";//s分配在栈上,"abcde"分配在常量区
char*str = NULL; //str分配在栈上
str = new char[10];//str所指向的空间分配在堆上
delete []str;
return 0;
}
文章评论(0条评论)
登录后参与讨论