奇怪的java行为

发布于 2024-12-20 06:04:53 字数 188 浏览 0 评论 0原文

谁能解释一下

int i=2;
int j=+-i;//-+i; 

+-i-+i 情况下 j=-2 的值。

这在 Java 中可以吗?或者这应该是一个编译器错误?

提前谢谢。

Can anyone explain me this

int i=2;
int j=+-i;//-+i; 

the value of j=-2 in either case of +-i or -+i.

Is this fine in Java ? or should this be a compiler error?

Thankx in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

长安忆 2024-12-27 06:04:53

没关系 - 你刚刚将两个一元运算符放在一起。所以它是:

int j = +(-i);

或者

int j = -(+i);

参见 第 15.15.3 节< /a> 和 15.15.4

It's fine - you've just got two unary operators together. So it's either:

int j = +(-i);

or

int j = -(+i);

See sections 15.15.3 and 15.15.4 of the JLS for these two operators.

要走干脆点 2024-12-27 06:04:53

这绝对没问题。浏览一下java中的一元运算符

两种情况都是相似的,以不同顺序执行相同操作,最终结果保持相同!

This is absolutely fine. Go through the Unary Operators in java

Both the cases are similar, the ultimate result stays same with the same operations performed in different order!!

感悟人生的甜 2024-12-27 06:04:53

可以这样想:int j = +i 对应于int j = i。因此,-+i+-i 将是 -i

just think of it this way: int j = +i would correspond to int j = i. Therefore, -+i or +-i would be -i.

此刻的回忆 2024-12-27 06:04:53

您将两个一元运算符应用于 i

int j = +-i;

-+i 等效

int j = +(-i);

且类似。结果与否定 i 相同,除非 i 等于 Integer.MIN_VALUE(在这种情况下,j 结束等于i)。

You're applying two unary operators to i:

int j = +-i;

is equivalent to

int j = +(-i);

and similarly for -+i. The outcome is the same as negating i unless i is equal to Integer.MIN_VALUE (in which case j ends up equal to i).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文