演算子の一覧と優先順位
PHP 2014/04/06
演算子一覧(上の方ほど優先順位が高い)
clone new
[]
++ -- ~ (int) @
instanceof
!
* / %
+ - .
<< >>
< <= > >=
== != === !== <>
&
^
|
&&
||
?:
= += -= *= /= .= %= &= |= ^= <<= >>= =>
and
xor
or
,
演算子の優先順位 | PHP Manual
http://php.net/manual/ja/language.operators.precedence.php
Ruby 2014/04/02
演算子一覧(上の方ほど優先順位が高い)
::
[]
+(単項) ! ~
**
-(単項)
* / %
+ -
<< >>
&
| ^
> >= < <=
<=> == === != =~ !~
&&
||
.. ...
?:(条件演算子)
=(+=, -= ... )
not
and or
演算子式 | Ruby Reference Manual
http://docs.ruby-lang.org/ja/2.1.0/doc/spec=2foperator.html