三元运算符不起作用

Netbeans说我的三元运算符不是语句。怎么会?

int direction;

direction = (Math.random() < 0.5) ? 0 : 1; // direction is either L or R (0 or 1)

direction == 0 ? System.out.print('L') : System.out.print('R');

我尝试过if / then / else对应项,并且工作正常:

int direction;

direction = (Math.random() < 0.5) ? 0 : 1; // direction is either L or R (0 or 1)

if(direction == 0){

System.out.print('L');

} else {

System.out.print('R');

}

回答:

三元运算符中的语句必须是非空的。他们需要退货。

System.out.println(direction == 0 ? 'L' : 'R');

以上是 三元运算符不起作用 的全部内容, 来源链接: utcz.com/qa/408756.html

回到顶部