aboutsummaryrefslogtreecommitdiff
path: root/files/ja/glossary/encapsulation
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
commit33058f2b292b3a581333bdfb21b8f671898c5060 (patch)
tree51c3e392513ec574331b2d3f85c394445ea803c6 /files/ja/glossary/encapsulation
parent8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff)
downloadtranslated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip
initial commit
Diffstat (limited to 'files/ja/glossary/encapsulation')
-rw-r--r--files/ja/glossary/encapsulation/index.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/files/ja/glossary/encapsulation/index.html b/files/ja/glossary/encapsulation/index.html
new file mode 100644
index 0000000000..ccaf151757
--- /dev/null
+++ b/files/ja/glossary/encapsulation/index.html
@@ -0,0 +1,17 @@
+---
+title: Encapsulation (カプセル化)
+slug: Glossary/Encapsulation
+tags:
+ - CodingScripting
+ - Glossary
+translation_of: Glossary/Encapsulation
+---
+<p>Encapsulation (カプセル化) とは、データと{{glossary("function","関数")}}を一つのコンポーネント (例えば、{{glossary("class","クラス")}}) に閉じ込め、そのコンポーネントへのアクセスを制御することにより、その{{glossary("object", "オブジェクト")}}を "ブラックボックス" にすることです。これにより、そのクラスのユーザは隠れた実装ではなくインターフェース(すなわち、そのクラスの外に対して公開されているデータと関数)を知っているだけで済みます。</p>
+
+<h2 id="詳細情報">詳細情報</h2>
+
+<h3 id="一般知識">一般知識</h3>
+
+<ul>
+ <li><a href="https://ja.wikipedia.org/wiki/%E3%82%AB%E3%83%97%E3%82%BB%E3%83%AB%E5%8C%96">カプセル化</a> (Wikipedia)</li>
+</ul>