Sun . Java . Code Library . o*
operators note: + - * / addition subtraction multiplication division. For example x += 6; is x = x + 6;
operators note:
operator hierarchy as [] . () (method xyz) // Left to right; ! ~ ++ -- + - ()
(cast) new // Right to left; * / % // L to R; + - // L to R; << >> >>> // L to
R; < <= > >= instanceof // L to R; == != // L to R; & // L to R; ^ // L to R; |
// L to R; && // L to R; || // L to R; ?: // L to R; = // Right to left; += -=
*= /= %= &= |= ^= <<= >>= >>>= // need to test explicitly;