aboutsummaryrefslogtreecommitdiff
path: root/files/ja/glossary/instance/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/ja/glossary/instance/index.html')
-rw-r--r--files/ja/glossary/instance/index.html29
1 files changed, 29 insertions, 0 deletions
diff --git a/files/ja/glossary/instance/index.html b/files/ja/glossary/instance/index.html
new file mode 100644
index 0000000000..0c0af3af54
--- /dev/null
+++ b/files/ja/glossary/instance/index.html
@@ -0,0 +1,29 @@
+---
+title: Instance
+slug: Glossary/Instance
+tags:
+ - Beginner
+ - CodingScripting
+ - Glossary
+ - JavaScript
+ - NeedsContent
+translation_of: Glossary/Instance
+---
+<p>{{glossary("constructor", "コンストラクタ")}} によって作成された{{glossary("object","オブジェクト")}}は、そのコンストラクタのインスタンス(実体)と呼ばれます。</p>
+
+<pre class="brush: js">var a = function(){};
+//a is constructor.
+
+var b = new a();
+//b is instance.
+</pre>
+
+<p>{{訳注("JavaScript は、 Java のようなクラスベースの言語とは違い、new を用いたクラスのインスタンス化だけではなく、オブジェクト初期化子({})を用いても、オブジェクトを作成できます。")}}</p>
+
+<h2 id="関連項目">関連項目</h2>
+
+<h3 id="基礎知識">基礎知識</h3>
+
+<ul>
+ <li>ウィキペディア上の記事{{interwiki("wikipedia", "インスタンス", "インスタンス")}}</li>
+</ul>