From 33058f2b292b3a581333bdfb21b8f671898c5060 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:40:17 -0500 Subject: initial commit --- files/ja/glossary/inheritance/index.html | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 files/ja/glossary/inheritance/index.html (limited to 'files/ja/glossary/inheritance/index.html') 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 +--- +

継承は、{{glossary("OOP","オブジェクト指向プログラミング")}}の大きな特徴です。データ抽象化は、いくつかのレベルで実行できます。つまり、{{glossary("class","クラス")}}にスーパークラスとサブクラスを持たせることができます。

+ +

アプリ開発者は、スーパークラスの{{glossary("attribute","属性")}}と{{glossary("method","メソッド")}}を選択して、独自に保持して追加することで、とても柔軟にクラスを定義できます。言語によっては、クラスを複数の親から継承することができます(多重継承)。

+ +

より詳しく知る

+ +

それについて学ぶ

+ + -- cgit v1.2.3-54-g00ecf