diff options
| author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
|---|---|---|
| committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
| commit | 33058f2b292b3a581333bdfb21b8f671898c5060 (patch) | |
| tree | 51c3e392513ec574331b2d3f85c394445ea803c6 /files/zh-cn/glossary/garbage_collection | |
| parent | 8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff) | |
| download | translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2 translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip | |
initial commit
Diffstat (limited to 'files/zh-cn/glossary/garbage_collection')
| -rw-r--r-- | files/zh-cn/glossary/garbage_collection/index.html | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/files/zh-cn/glossary/garbage_collection/index.html b/files/zh-cn/glossary/garbage_collection/index.html new file mode 100644 index 0000000000..8166c27417 --- /dev/null +++ b/files/zh-cn/glossary/garbage_collection/index.html @@ -0,0 +1,25 @@ +--- +title: 垃圾回收 +slug: Glossary/Garbage_collection +tags: + - GC + - 内存管理 + - 垃圾回收 +translation_of: Glossary/Garbage_collection +--- +<p><strong><a href="/en-US/docs/Web/JavaScript/Memory_Management#Garbage_collection">垃圾回收</a></strong> 是一个术语,在 {{Glossary("computer programming", "计算机编程")}}中用于描述查找和删除那些不再被其他{{Glossary("object reference", "对象引用")}}的{{Glossary("object", "对象")}} 处理过程。换句话说,垃圾回收是删除任何其他对象未使用的对象的过程。 垃圾收集通常缩写为 "GC", 是{{Glossary("JavaScript")}}中使用的{{Glossary("memory management", "内存管理")}}系统的基本组成部分。</p> + +<h2 id="学习更多">学习更多</h2> +<h3 id="基本知识">基本知识</h3> + +<ul> + <li>{{interwiki("wikipedia", "Memory management")}} on Wikipedia</li> + <li>{{interwiki("wikipedia", "Garbage collection")}} on Wikipedia</li> +</ul> + +<h3 id="技术参考">技术参考</h3> + +<ul> + <li><a href="/en-US/docs/Web/JavaScript/Memory_Management#Garbage_collection">Garbage collection</a> in the MDN JavaScript guide.</li> + <li><a href="/en-US/docs/Web/JavaScript/Memory_Management">Memory management in JavaScript</a></li> +</ul> |
