为什么year++和++year算出来的结果是一样的
year++和++year同为year+1
不同在于a = year++后 a的值为year a = ++year后 a的值为year+1
两种在取值时有区别,但在运算之后结果相同