本文介绍了x ++和++ x之间有什么区别的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
x ++和++ x有什么区别?
What is the difference between x++ and ++x ?
推荐答案
x ++
执行该语句,然后递增该值。
x++
executes the statement and then increments the value.
++ x
递增值然后执行语句。
++x
increments the value and then executes the statement.
var x = 1;
var y = x++; // y = 1, x = 2
var z = ++x; // z = 3, x = 3
这篇关于x ++和++ x之间有什么区别的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!