局部静态和局部变量的内存分配
1.
void main(void)
{
int *ptr1;
ptr1 = (int *)malloc(..);
}
2.
void main(void)
{
static int *ptr2;
ptr2 = (int *)malloc(..);
}
我想问ptr1 & 的内存分配是如何完成的? ptr2?
1.
void main(void)
{
int *ptr1;
ptr1 = (int *)malloc(..);
}
2.
void main(void)
{
static int *ptr2;
ptr2 = (int *)malloc(..);
}
I want to ask how is memory allocation done for ptr1 & ptr2?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
ptr1
指针本身是在堆栈上分配的。ptr1
指向堆上的内存。ptr2
指针本身在程序启动时分配(在调用main
之前),并且是全局的,但恰好仅在main
中可见,因为它在其范围内声明。ptr2
也指向堆上的内存。在
main
之外声明ptr2
只会使其在其下面的所有函数中可见,但其存储是相同的。The
ptr1
pointer itself is allocated on the stack.ptr1
points to memory on the heap.The
ptr2
pointer itself is allocated on program startup (beforemain
is invoked) and is global but just happens to be visible only inmain
because it is declared in its scope.ptr2
points to memory on the heap as well.Declaring
ptr2
outside ofmain
would only make it visible in all functions below it, but its storage will be the same.