1. 内存分区模型
c++程序在执行时,将内存分为四个区域
代码区:存放函数体的二进制代码,由操作系统进行管理。
全局区:存放全局变量和静态变量以及常量。
栈区:由编译器自动分配释放,存放函数的参数值,局部变量等。
堆区:由程序员分配和释放,若程序员不释放,程序结束时由操作系统回收。
内存四区意义
不同区域存放的数据,赋予不同的生命周期,给我们更大的灵活编程
2. 程序执行前
在程序编译后,生成了exe可执行程序,未执行该程序前分为两个区域
示例:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
| #include <iostream> using namespace std;
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 << "const修饰的全局常量c_g_a的地址:" << (int)&c_g_a << endl; cout << "const修饰的全局常量c_g_b的地址:" << (int)&c_g_b << endl;
const int c_l_a = 10; const int c_l_b = 10; cout << "const修饰的局部常量c_l_a的地址:" << (int)&c_l_a << endl; cout << "const修饰的局部常量c_l_b的地址:" << (int)&c_l_b << endl;
return 0;
}
|
运行结果:
1 2 3 4 5 6 7 8 9 10 11
| 局部变量a的地址-552600588 局部变量b的地址-552600556 全局变量g_a的地址898355200 全局变量g_b的地址898355204 静态变量s_a的地址898355208 静态变量s_b的地址898355212 字符串常量的地址为:898346584 const修饰的全局常量c_g_a的地址:898345904 const修饰的全局常量c_g_b的地址:898345908 const修饰的局部常量c_l_a的地址:-552600524 const修饰的局部常量c_l_b的地址:-552600492
|
3.程序运行后
1 2 3 4 5 6 7 8 9 10 11 12
| #include<iostream> using namespace std; int* func() { int a = 10; return &a; } int main() { int* p = func(); cout << *p << endl; cout << *p << endl; return 0; }
|
运行结果:
示例:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
| #include<iostream> using namespace std; int b = 10; int* func() { int* p = new int(10); return p; } int main() { int* p = func(); cout << *p << endl; cout << *p << endl; return 0; }
|
运行结果:
3. new操作符
示例:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
| #include <iostream> using namespace std; int* func() { int* p = new int(10); return p; } void func2() { int* arr = new int[10]; for (int i = 0;i < 10;i++) { arr[i] = i; } for (int i = 0;i < 10;i++) { cout << arr[i] << " "; } delete[]arr; } int main() { int* p = func(); cout << *p << endl; delete p; func2(); return 0; }
|
运行结果: