From professional translators, enterprises, web pages and freely available translation repositories.
addition operator
加算演算子
Last Update: 2006-09-06
Usage Frequency: 1
Quality:
for example, in the expression 1 + 5 * 3, the answer is 16 and not 18 because the multiplication ("*") operator has a higher precedence than the addition ("+") operator.
演算子の優先順位は、二つの式が"緊密に"結合している度合いを指定します。 例えば、式 1 + 5 * 3 の答えは 16 になり、 18 とはなりません。 これは乗算演算子("*")は、加算演算子("+")より高い優先順位を有するか らです。必要に応じて強制的に優先順位を設定するために括弧を使用する ことが可能です。例えば、 18 と評価するためには、 (1 + 5) * 3 とします。