Java Increment / Decrement Operators - How they behave, what's the functionality?

后端 未结 2 2033
一个人的身影
一个人的身影 2020-12-07 03:49

It\'s been 3 days since I start to learn Java. I have this program and I don\'t understand code in main method with ++ and -- operator

2条回答
  •  既然无缘
    2020-12-07 04:19

    ++ and -- are called increment and decrement operators. They are shortcuts for writing x = x+1 (x+=1) / x = x-1 (x-=1). (assumed that x is a numeric variable)

    In rare cases you could worry about the precedence of the incrementation/decrementation and the value the expression returns: Writing ++x it means "increment first, then return", whereas x++ means "return first, then increment". Here we can distinguish between pre- and post increment/decrement operators.

提交回复
热议问题