aboutsummaryrefslogtreecommitdiff
path: root/files/ja/glossary/class
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/class
parent8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff)
downloadtranslated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip
initial commit
Diffstat (limited to 'files/ja/glossary/class')
-rw-r--r--files/ja/glossary/class/index.html21
1 files changed, 21 insertions, 0 deletions
diff --git a/files/ja/glossary/class/index.html b/files/ja/glossary/class/index.html
new file mode 100644
index 0000000000..01cc188b22
--- /dev/null
+++ b/files/ja/glossary/class/index.html
@@ -0,0 +1,21 @@
+---
+title: Class (クラス)
+slug: Glossary/Class
+tags:
+ - CodingScripting
+ - Glossary
+ - 用語集
+translation_of: Glossary/Class
+---
+<p>{{glossary("OOP","オブジェクト指向プログラミング")}}では、<em>クラス</em>は{{glossary("object","オブジェクト")}}の特徴を定義します。クラスはオブジェクトの{{glossary("property","プロパティ")}}や{{glossary("method","メソッド")}}のひな形定義であり、オブジェクトのより具体的なインスタンスが描かれる「青写真」です。</p>
+
+<h2 id="Learn_More" name="Learn_More">詳細情報</h2>
+
+<h3 id="General_knowledge" name="General_knowledge">一般知識</h3>
+
+<ul>
+ <li><a href="https://developer.mozilla.org/ja/docs/Web/JavaScript/Guide/Details_of_the_Object_Model#Class-based_vs._prototype-based_languages">クラスベース言語とプロトタイプベース言語</a>(JavaScript など)</li>
+ <li><a href="https://developer.mozilla.org/ja/docs/Web/JavaScript/Introduction_to_Object-Oriented_JavaScript#The_Class">JavaScript におけるクラスとしての関数の利用</a></li>
+ <li>ウィキペディアの<a href="https://ja.wikipedia.org/wiki/%E3%82%AF%E3%83%A9%E3%82%B9%E3%83%99%E3%83%BC%E3%82%B9">クラスベース</a>の記事</li>
+ <li>ウィキペディアの <a href="https://ja.wikipedia.org/wiki/%E3%82%AA%E3%83%96%E3%82%B8%E3%82%A7%E3%82%AF%E3%83%88%E6%8C%87%E5%90%91%E3%83%97%E3%83%AD%E3%82%B0%E3%83%A9%E3%83%9F%E3%83%B3%E3%82%B0">Object-oriented programming</a> の記事</li>
+</ul>