Difference between revisions of "Operators"
From Mesham
Jump to navigationJump to search (Created page with '== Operators == #+ #- #* Multiplication #% Division #<< Bit shift to left #>> Bit shift to right #== Test for equality #!= Test for inverse equality #= Test of equa…') |
|||
Line 1: | Line 1: | ||
== Operators == | == Operators == | ||
− | #+ | + | #+ Addition |
− | #- | + | #- Subtraction |
− | #* Multiplication | + | #<nowiki>*</nowiki> Multiplication |
− | # | + | #/ Division |
+ | #++ Pre or post fix addition | ||
+ | #-- Pre or post fix subtraction | ||
#<< Bit shift to left | #<< Bit shift to left | ||
#>> Bit shift to right | #>> Bit shift to right | ||
#== Test for equality | #== Test for equality | ||
#!= Test for inverse 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 smaller than rvalue | ||
#> Test lvalue is greater than rvalue | #> Test lvalue is greater than rvalue |
Revision as of 16:14, 12 January 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
- || Logical OR
- && Logical AND