发布于2021-07-24 20:36 阅读(808) 评论(0) 点赞(19) 收藏(2)
C++程序在执行时,将内存大方向划分为4个区域
下面是几个特殊的区域:
内存四区意义:
不同区域存放的数据,赋予不同的生命周期, 给我们更大的灵活编程
在程序编译后,生成了exe可执行程序,未执行该程序前分为两个区域
代码区:未执行之前就已经存在了
全局区:
示例:
// const---c; local-l; golbal--g;
//全局变量
int g_a = 10;
int g_b = 10;
//全局常量
const int c_g_a = 10;
const int c_g_b = 10;
int main() {
//局部变量
int a = 10;
int b = 10;
//打印地址
cout << "局部变量a地址为: " << (int)&a << endl;
cout << "局部变量b地址为: " << (int)&b << endl;
cout << "全局变量g_a地址为: " << (int)&g_a << endl;
cout << "全局变量g_b地址为: " << (int)&g_b << endl;
//静态变量
static int s_a = 10;
static int s_b = 10;
cout << "静态变量s_a地址为: " << (int)&s_a << endl;
cout << "静态变量s_b地址为: " << (int)&s_b << endl;
cout << "字符串常量地址为: " << (int)&"hello world" << endl;
cout << "字符串常量地址为: " << (int)&"hello world1" << endl;
cout << "全局常量c_g_a地址为: " << (int)&c_g_a << endl;
cout << "全局常量c_g_b地址为: " << (int)&c_g_b << endl;
const int c_l_a = 10;
const int c_l_b = 10;
cout << "局部常量c_l_a地址为: " << (int)&c_l_a << endl;
cout << "局部常量c_l_b地址为: " << (int)&c_l_b << endl;
system("pause");
return 0;
}
位于全局区的各种数据是161开头(每次不固定),地址比较近。位于常量区的局部变量是115开头(每次不固定),地址比较近。
总结:
1.2 程序运行后
栈区:
由编译器自动分配释放, 存放函数的参数值,局部变量等
注意事项:不要返回局部变量的地址,栈区开辟的数据由编译器自动释放
示例:
原文链接:https://blog.csdn.net/sinat_37281674/article/details/118436496
作者:空气很好
链接:http://www.pythonpdf.com/blog/article/373/7beb8a8d4afcf9fb3eff/
来源:编程知识网
任何形式的转载都请注明出处,如有侵权 一经发现 必将追究其法律责任
昵称:
评论内容:(最多支持255个字符)
投诉与举报,广告合作请联系vgs_info@163.com或QQ3083709327
免责声明:网站文章均由用户上传,仅供读者学习交流使用,禁止用做商业用途。若文章涉及色情,反动,侵权等违法信息,请向我们举报,一经核实我们会立即删除!