Difference between revisions of "Operators"
From Mesham
Jump to navigationJump to search (→Operators) |
(→Operators) |
||
Line 23: | Line 23: | ||
#+= Plus assignment | #+= Plus assignment | ||
#-= Subtraction assignment | #-= Subtraction assignment | ||
− | #*= Multiplication assignment | + | #<nowiki>*</nowiki>= Multiplication assignment |
#/= Division assignment | #/= Division assignment | ||
#%= Modulus assignment | #%= Modulus assignment | ||
[[Category:Core Mesham]] | [[Category:Core Mesham]] |
Revision as of 14:53, 3 May 2013
Operators
- + Addition
- - Subtraction
- * Multiplication
- / Division
- ++ Pre or post fix addition
- -- Pre or post fix subtraction
- << Bit shift to left
- >> Bit shift to right
- == Test for equality
- != Test for inverse equality
- ! Logical negation
- ( ) Function call or expression parentheses
- [ ] Array element access
- . Member access
- < Test lvalue is smaller than rvalue
- > Test lvalue is greater than rvalue
- <= Test lvalue is smaller or equal to rvalue
- >= Test lvalue is greater or equal to rvalue
- ?: Inline if operator
- || Logical OR
- && Logical AND
- += Plus assignment
- -= Subtraction assignment
- *= Multiplication assignment
- /= Division assignment
- %= Modulus assignment