Game Development Reference
In-Depth Information
Arithmetic Operators
+
Additive operator (also used for String concatenation)
-
Subtraction operator
*
Multiplication operator
/
Division operator
%
Remainder operator
Unary Operators
+
Unary plus operator
-
Negates an expression
++
Increments a value by 1
-
Decrements a value by 1
!
Inverts the value of a Boolean
Conditional Operators
&&
Conditional-AND
||
Conditional-OR
=
Assignment operator
==
Equal to
!=
Not equal to
>
Greater than
>=
Greater than or equal to
<
Less than
<=
Less than or equal to
 
Search WWH ::




Custom Search