aboutsummaryrefslogtreecommitdiff
path: root/files/ko/glossary/immutable/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/ko/glossary/immutable/index.html')
-rw-r--r--files/ko/glossary/immutable/index.html23
1 files changed, 23 insertions, 0 deletions
diff --git a/files/ko/glossary/immutable/index.html b/files/ko/glossary/immutable/index.html
new file mode 100644
index 0000000000..847f9bbbe3
--- /dev/null
+++ b/files/ko/glossary/immutable/index.html
@@ -0,0 +1,23 @@
+---
+title: Immutable
+slug: Glossary/Immutable
+tags:
+ - CodingScripting
+ - Glossary
+---
+<p>불변 <a href="/ko/docs/Glossary/Object">객체</a> 는 내용을 변경할 수 없는 객체입니다.<br>
+ 객체는 다양한 이유로 불변일 수 있습니다. 예를 들어 아래와 같습니다.</p>
+
+<ul>
+ <li>성능 향상하기(향후 객체의 변경에 대한 계획 없음)</li>
+ <li>메모리 사용을 줄이기(전체 객체를 복제하는 대신 <a href="/ko/docs/Glossary/Object_reference">객체를 참조</a>)</li>
+ <li>스레드 안전성(여러 스레드가 서로 간섭하지 않고 동일한 객체 참조 가능)</li>
+</ul>
+
+<h2 id="Learn_more">더 알아보기</h2>
+
+<h3 id="General_knowledge">일반적 지식</h3>
+
+<ul>
+ <li>{{interwiki("wikipedia", "Immutable object", "Immutable")}} on Wikipedia</li>
+</ul> \ No newline at end of file