In programming and mathematics, it is a symbol or function that denotes an operation.
プログラミングと数学に、演算子は、演算などを意味するシンボルまたは関数です。
For example/例えば: (+, *, /, %, =, ==)
Operators are used to perform operations on operands. Operands may be variables and/or constants.
演算子は、オペランドに演算を行います。オペランドは、変数や定数である場合があります。
Arithmetic Operators・数学演算子
+ Addition Operator・足し算の演算子 5 + 5 ⇒ 10
% Modulo Operator・モジュロの演算子 17 % 3 ⇒ 2
Relational Operators・関係演算子
> Greater than Operator・大なり記号の演算子 4 > 2 ⇒ true・真
!= Not Equal Operator・等しくない記号の演算子 10 != 10 ⇒ false・偽
Depending on the programming language operators may differ.
プログラミング言語に従い、演算子が異なるかもしれません。