本文介绍了哪个优先级更高:||或&&或==的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有这个表情:
y[i] = ( z[i] == a && b || c )
哪些元素(&&
,||
,==
)具有优先级?
Which of these elements (&&
, ||
, ==
) have the priority?
您能用方括号显示操作顺序吗?
Can you please show the order of operations with brackets?
推荐答案
首先是==
,然后是&&
,然后是||
.
First ==
, then &&
, then ||
.
您的表达式将被评估为y[i] = (((z[i] == a) && b) || c)
.
Your expression will be evaluated as y[i] = (((z[i] == a) && b) || c)
.
https://docs.oracle.com/javase/tutorial/java/nutsandbolts/operators.html
这篇关于哪个优先级更高:||或&&或==的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!