Dart - Arithmetic Operators
Dart supports different arithmetic operators that can be used to performs mathematical calculations on the values and variables.
The basic arithmetic operations like addition, subtraction, multiplication, division, etc. are performed with these operators.
Arithmetic operations are performed according to the order or precedence of operators.
The general structure of every expression
Every expression will follow this general structure
Operand Operator Operand [Operator Operand] …
- Operand represents data.
- An operator is a symbol used to perform operation such as mathematical, logical or relational producing a final result.
- For example,
x + y
wherex
andy
are operands and+
is an operator. - For example,
a = 7
where,=
is an operator anda
and7
are operands.
In this article, you will find Arithmetic operators provided by Dart.
Arithmetic operators
Basic mathematical calculations are preformed on numeric values with the use of arithmetic operators.
Operator | Description | Example |
---|---|---|
+ | Addition | x + y |
- | Subtraction | x - y |
-expr | Unary minus, aka negation (reverse the sign of the expression) | -x |
* | Multiplication | x * y |
/ | Division | x / y |
~/ | Divide, returning an integer result | x ~/ y |
% | Get the remainder of an integer division (modulo) | x % y |
- All of these listed operators are binary operators.
- All these operators also follow the general structure of
Operand
Operator
Operand
, meaning that an operator is always surrounded by two operands. - For example, an expression
x + y
is a binary operation, where x and y are the two operands and + is an operator.
Hope you like this!
Keep helping and happy 😄 coding