(2019.3.11) 运算符优先级
Posted wu1611312486
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了(2019.3.11) 运算符优先级相关的知识,希望对你有一定的参考价值。
class Demo
{
public static void main(String[] args)
{
int x = 0,y = 1;
/*
if (++x == y-- & x++ ==1 || --y == 0)
{
System.out.println("x="+x+",y="+y); //x = 2,y = 0;
}
else
{
System.out.println("y="+y+",x="+x);
}
*/
if(++x == y--)
System.out.println("y="+y+",x="+x); //成立!
else
System.out.println("x="+x+",y="+y);
}
}
//
以上是关于(2019.3.11) 运算符优先级的主要内容,如果未能解决你的问题,请参考以下文章