显示程序和函数的当前调用栈。
调用的函数一定不能顾虑栈指针当前所指的位置。
The calling function must not care where the stack pointer is currently pointing.
当函数返回到进行调用的函数时,后者一定不能依赖于仍在栈中的参数列表。
The calling function must not depend on the parameter list still being on the stack when your function returns to it.
应用推荐