数据分析师2017-09-30 22:44:59
What is the difference between a++ and ++a? -PHP Chinese website Q&A-What is the difference between a++ and ++a? -PHP Chinese website Q&A
Please watch and learn.
阿神2016-12-17 12:00:23
有区别啊,比如var b = 1;a=b++;c=++b;
那运算完之后
a=1;(b先参与运算,将值赋给a,然后自己再加1,所以a为1,b为2)
c=3;(b为2,然后先自己加1,再将值赋给c)