若是是boolean類型 boolean-x?10:100 最終返回一個值 若是正確true則爲10,不然錯誤false爲100.class
書中的解釋是static
三元操做符同時稱爲條件操做符,有三個操做數,屬於操做符的一種,最終會生成一個值錯誤
表達形式爲 boolean-exp?value0:value1生成
若是boolean-exp的結果爲true,就計算value0,並且這個計算也就是操做符最終產生的值。若是boolean-exp的結果爲false,就計算value1,一樣,他的結果也是最終產生的值。return
也能夠換用成普通的if-else語句 三元操做符更加簡潔 ,但若是打算頻繁使用 仍是要多作思量,由於他會產生可讀性比較 查的代碼。void
示例
public class TernarIfElse{
static int ternary(int i){
return i<10?i*100:i*10;
}
public static void main (String[] args){
print(ternary(9));
print(tenary(10));
}
}
結果:
900
100