diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
commit | 33058f2b292b3a581333bdfb21b8f671898c5060 (patch) | |
tree | 51c3e392513ec574331b2d3f85c394445ea803c6 /files/ja/glossary/callback_function/index.html | |
parent | 8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff) | |
download | translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2 translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip |
initial commit
Diffstat (limited to 'files/ja/glossary/callback_function/index.html')
-rw-r--r-- | files/ja/glossary/callback_function/index.html | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/files/ja/glossary/callback_function/index.html b/files/ja/glossary/callback_function/index.html new file mode 100644 index 0000000000..1f6e684a5c --- /dev/null +++ b/files/ja/glossary/callback_function/index.html @@ -0,0 +1,36 @@ +--- +title: Callback function (コールバック関数) +slug: Glossary/Callback_function +tags: + - Callback + - Callback function + - CodingScripting + - Glossary +translation_of: Glossary/Callback_function +--- +<p>コールバック関数は他の関数に引数として渡される関数で、外側の関数で何らかの処理やアクションを実行します。</p> + +<p>簡単な例を以下に示します:</p> + +<pre class="brush: js">function greeting(name) { + alert('Hello ' + name); +} + +function processUserInput(callback) { + var name = prompt('Please enter your name.'); + callback(name); +} + +processUserInput(greeting);</pre> + +<p>上記の例はすぐに実行される {{glossary("synchronous", "同期型")}} コールバックです。</p> + +<p>注意として、コールバックは {{glossary("asynchronous", "非同期")}} 命令が完了した後に続いてコードが実行されます — これを非同期コールバックといいます。コールバック関数の良い例は、Promise が成功か失敗した後にチェーンされる <code><a href="https://wiki.developer.mozilla.org/ja/docs/Web/JavaScript/Reference/Global_Objects/Promise/then">.then()</a></code> ブロックの中で実行されるものです。この構造は <code><a href="https://wiki.developer.mozilla.org/ja/docs/Web/API/WindowOrWorkerGlobalScope/fetch">fetch()</a></code>のようなモダンな web API で良く使われています。</p> + +<h2 id="Learn_more" name="Learn_more"><strong>詳細情報</strong></h2> + +<h3 id="General_knowledge" name="General_knowledge">一般知識</h3> + +<ul> + <li>Wikipedia の {{interwiki("wikipedia", "Callback_(computer_programming)", "コールバック_(情報工学)")}}</li> +</ul> |