0%

Cplusplus05函数和栈

栈的本质是一段提前分配好的内存空间,主要就是用来存放临时变量!只需要管理好栈的读写就可以避免频繁的内存分配和不必要的内存浪费!

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
int Ave(int a, int b)
{
a = a + 250;
return a + b;
}
int Add(int a, int b)
{
int c = 250;
int d = Ave(a, b);
c = c + d;
return c;
}
int main()
{
std::cout << Add;
system("pause");
int x = Add(250, 50);
}

CPU 的寄存器:

return 的值 一般使用 eax 来传递