什么是物理地址和虚拟地址?它们是如何工作的?

发布于 2024-10-21 12:57:59 字数 77 浏览 10 评论 0原文

顺便问一下,当“由于0xc000000e故障而无法写入内存”时,“svchost.exe错误”意味着什么?

像往常一样感谢!

And by the by, what does "svchost.exe error" imply when "the memory cannot be written because of 0xc000000e failure"?

Thanks as usual!

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

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

发布评论

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

评论(1

属性 2024-10-28 12:57:59

物理地址指向特定RAM芯片中的特定位置。虚拟地址是当今大多数代码所看到的,它允许代码不直接绑定到 RAM 中的特定位置。虚拟内存的这种使用可以让部分程序及其数据在不使用时存储在磁盘上,然后在需要时放回到 RAM 中。当它被带回 RAM 时,虚拟意味着它可以放置在任何有空间的地方,而不必准确地返回到它来自的位置。

0xc000000e 错误很可能意味着尝试访问部分虚拟内存时出现磁盘故障。

A physical address points to a specific place in a specific RAM chip. A virtual address is what most code sees nowadays, allowing the code to not be tied directly to specific locations in RAM. This use of virtual memory lets parts of programs and their data be stored on disk when not in use, then brought back into RAM when needed. When it is brought back into RAM, being virtual means that it can be put any place there's space for it rather than having to go back exactly where it came from.

The 0xc000000e error most likely means that there was a disk failure trying to access some of that virtual memory.

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