aboutsummaryrefslogtreecommitdiff
path: root/files/ja/glossary/inheritance/index.html
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/inheritance/index.html
parent8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff)
downloadtranslated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip
initial commit
Diffstat (limited to 'files/ja/glossary/inheritance/index.html')
-rw-r--r--files/ja/glossary/inheritance/index.html21
1 files changed, 21 insertions, 0 deletions
diff --git a/files/ja/glossary/inheritance/index.html b/files/ja/glossary/inheritance/index.html
new file mode 100644
index 0000000000..71cec68f95
--- /dev/null
+++ b/files/ja/glossary/inheritance/index.html
@@ -0,0 +1,21 @@
+---
+title: Inheritance (継承)
+slug: Glossary/Inheritance
+tags:
+ - CodingScripting
+ - Glossary
+ - Inheritance
+ - Programming Language
+translation_of: Glossary/Inheritance
+---
+<p>継承は、{{glossary("OOP","オブジェクト指向プログラミング")}}の大きな特徴です。データ抽象化は、いくつかのレベルで実行できます。つまり、{{glossary("class","クラス")}}にスーパークラスとサブクラスを持たせることができます。</p>
+
+<p>アプリ開発者は、スーパークラスの{{glossary("attribute","属性")}}と{{glossary("method","メソッド")}}を選択して、独自に保持して追加することで、とても柔軟にクラスを定義できます。言語によっては、クラスを複数の親から継承することができます(多重継承)。</p>
+
+<h2 id="Learn_more" name="Learn_more">より詳しく知る</h2>
+
+<h3 id="Learn_about_it" name="Learn_about_it">それについて学ぶ</h3>
+
+<ul>
+ <li><a href="/ja/docs/Web/JavaScript/Guide/Inheritance_and_the_prototype_chain">継承とプロトタイプチェーン</a></li>
+</ul>