+-/*%
数值拆分案例:
自增:++
自减:--
int a = 10; a++; System.out.println(a); int b = 10; b--; System.out.println(a);