C# 中的栈和堆

发布于 2024-11-18 08:20:25 字数 255 浏览 1 评论 0原文

可能的重复:
堆栈和堆是什么以及在哪里

有区别在C#中,堆和栈之间。我刚刚意识到我一直认为堆栈是RAM,堆是硬盘驱动器。但现在我不确定这是否正确。如果不是,那么如果它们存储在一个地方有什么区别?

Possible Duplicate:
What and where are the stack and heap

There is a difference in C# between the heap and stack. I've just realized that I always thought that the stack is RAM and the heap is a hard drive. But now I'm not sure if it's correct. If it isn't, then what's is the difference if they are stored in one place?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我偏爱纯白色 2024-11-25 08:20:25

“堆栈”(或更准确地说是调用堆栈)是自动管理的内存(即使在“非托管语言”中,如 C):局部变量存储在堆栈帧中的堆栈上,堆栈帧还包含过程或函数参数以及返回地址和也许某些特定于机器的状态需要在返回时恢复。

堆内存是 RAM 的一部分(或者更确切地说:虚拟地址空间),用于满足动态内存分配(C 中的malloc)。

然而,在 C# 中,堆和堆栈的使用是一个实现细节。但实际上,引用类型的对象是堆分配的;值类型数据既可以存储在堆栈上,也可以存储在堆上,具体取决于上下文(例如,如果它是引用类型对象的一部分)。

"The stack" (or more precisely the call stack) is automatically managed memory (even in "unmanaged languages" like C): Local variables are stored on the stack in stack frames that also contain the procedures or functions arguments and the return address and maybe some machine-specific state that needs to be restored upon return.

Heap memory is that part of RAM (or rather: virtual address space) used to satisfy dynamic memory allocations (malloc in C).

Yet, in C# heap and stack usage is an implementation detail. In practice though, objects of reference type are heap-allocated; value type data can both be stored on the stack and on the heap, depending on the context (e.g. if it's part of an reference-type object).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文