blob: 847f9bbbe3051bde87680099fd48e2a26dcdf9a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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>
|