后增量(i ++)和预增量(++ i)运算符如何在Java中工作? [英] How do the post increment (i++) and pre increment (++i) operators work in Java?

查看:104
本文介绍了后增量(i ++)和预增量(++ i)运算符如何在Java中工作?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

你能解释一下这个Java代码的输出吗?

Can you explain to me the output of this Java code?

int a=5,i;

i=++a + ++a + a++;
i=a++ + ++a + ++a;
a=++a + ++a + a++;

System.out.println(a);
System.out.println(i);

两种情况下的输出均为20

The output is 20 in both cases

推荐答案

这有帮助吗?

a = 5;
i=++a + ++a + a++; =>
i=6 + 7 + 7; (a=8)

a = 5;
i=a++ + ++a + ++a; =>
i=5 + 7 + 8; (a=8)

重点是 ++ a 递增值并立即返回它。

The main point is that ++a increments the value and immediately returns it.

a ++ 也会增加值(在后台),但返回变量的未更改值 - 看起来像什么稍后执行。

a++ also increments the value (in the background) but returns unchanged value of the variable - what looks like it is executed later.

这篇关于后增量(i ++)和预增量(++ i)运算符如何在Java中工作?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆