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');
}
在Java中,0沒有布爾表示。只有布爾表達式可用於此。 – Kon
[爲什麼這個方法不工作? Java三元運算符](http://stackoverflow.com/questions/16876698/why-doesnt-this-method-work-java-ternary-operator) –