diff options
author | Florian Merz <me@fiji-flo.de> | 2021-02-11 12:07:59 +0100 |
---|---|---|
committer | Florian Merz <me@fiji-flo.de> | 2021-02-11 12:07:59 +0100 |
commit | 6ef1fa4618e08426b874529619a66adbd3d1fcf0 (patch) | |
tree | 890e3e27131be010d82ef957fa68db495006cb0e /files/ja/glossary/constant | |
parent | 8260a606c143e6b55a467edf017a56bdcd6cba7e (diff) | |
download | translated-content-6ef1fa4618e08426b874529619a66adbd3d1fcf0.tar.gz translated-content-6ef1fa4618e08426b874529619a66adbd3d1fcf0.tar.bz2 translated-content-6ef1fa4618e08426b874529619a66adbd3d1fcf0.zip |
unslug ja: move
Diffstat (limited to 'files/ja/glossary/constant')
-rw-r--r-- | files/ja/glossary/constant/index.html | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/files/ja/glossary/constant/index.html b/files/ja/glossary/constant/index.html new file mode 100644 index 0000000000..40353e759b --- /dev/null +++ b/files/ja/glossary/constant/index.html @@ -0,0 +1,20 @@ +--- +title: Constant +slug: Glossary/Constant(定数) +tags: + - CodingScripting + - Constant + - Glossary +translation_of: Glossary/Constant +--- +<p>定数とはプログラマーが変更できない値のことです。例えば、数値 (1, 2, 42) です。一方、{{glossary("variable","変数")}}の場合、プログラマーは既に使用されている変数名に新しい{{glossary("value","値")}}を割り当てられます。</p> + +<p>変数と同様に、定数を識別子に割り当てられることがあります。例えば、<code>pi</code> という識別子に 3.14... (円周率) を割り当てることがあります。</p> + +<h2 id="Learn_more" name="Learn_more">詳細情報</h2> + +<h3 id="General_knowledge" name="General_knowledge">基礎知識</h3> + +<ul> + <li>Wikipedia 上の記事「{{Interwiki("wikipedia", "定数_(プログラミング)", "定数 (プログラミング)")}}」</li> +</ul> |