aboutsummaryrefslogtreecommitdiff
path: root/files/ja/glossary/static_method
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/static_method
parent8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff)
downloadtranslated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip
initial commit
Diffstat (limited to 'files/ja/glossary/static_method')
-rw-r--r--files/ja/glossary/static_method/index.html54
1 files changed, 54 insertions, 0 deletions
diff --git a/files/ja/glossary/static_method/index.html b/files/ja/glossary/static_method/index.html
new file mode 100644
index 0000000000..a2fb2df971
--- /dev/null
+++ b/files/ja/glossary/static_method/index.html
@@ -0,0 +1,54 @@
+---
+title: Static method (静的メソッド)
+slug: Glossary/Static_method
+tags:
+ - CodingScripting
+ - Glossary
+ - JavaScript
+ - Method
+ - Static
+ - Static Method
+ - メソッド
+ - 用語集
+ - 静的
+ - 静的メソッド
+translation_of: Glossary/Static_method
+---
+<p>静的メソッド (または <em>静的関数</em>) とは、{{Glossary("method","メソッド")}}のうち{{Glossary("object","オブジェクト")}}のメンバーとして定義されているものの、コンストラクターで生成されたオブジェクトインスタンスからではなく、API のオブジェクトコンストラクターから直接アクセスできるものです。</p>
+
+<p><a href="/ja/docs/Web/API">Web API</a> では、静的メソッドはインターフェイスで定義されているものの、先にその型のオブジェクトのインスタンス化をせずに呼び出すことができます。</p>
+
+<p>オブジェクトインスタンスに対して呼び出されるメソッドは、<em>インスタンスメソッド</em>と呼ばれます。</p>
+
+<h2 id="Examples" name="Examples">例</h2>
+
+<p><a href="/ja/docs/Web/API/Notifications_API">Notifications API</a> では、{{domxref("Notification.requestPermission()")}} メソッドは実際は {{domxref("Notification")}} コンストラクター自身に対して呼び出されます。— これが静的メソッドです。</p>
+
+<pre class="brush: js notranslate">let promise = Notification.requestPermission();</pre>
+
+<p>一方で、{{domxref("Notification.close()")}} メソッドはインスタンスメソッドです。— これは特定の通知オブジェクトインスタンスに対して呼び出され、これが表現するシステム通知を閉じます。</p>
+
+<pre class="brush: js notranslate">let myNotification = new Notification('This is my notification');
+
+myNotification.close();</pre>
+
+<section class="Quick_links" id="Quick_Links">
+<ol>
+ <li>一般知識
+ <ol>
+ <li>Techopedia の <a href="https://www.techopedia.com/definition/24034/static-method">Static Method</a></li>
+ </ol>
+ </li>
+ <li>JavaScript リファレンス
+ <ol>
+ <li><a href="/ja/docs/Web/JavaScript/Reference/Classes/static">static</a></li>
+ </ol>
+ </li>
+ <li><a href="/ja/docs/Glossary">MDN Web Docs 用語集</a>
+ <ol>
+ <li>{{Glossary("Object", "オブジェクト")}}</li>
+ <li>{{Glossary("Method", "メソッド")}}</li>
+ </ol>
+ </li>
+</ol>
+</section>