1. 程式人生 > >java中判斷運算子 == 和三目運算子的優先順序問題

java中判斷運算子 == 和三目運算子的優先順序問題

public class Test {
    public static void main(String[] args) {
        System.out.println(true?false:true==true?false:true);
    }
}
//輸出:false

== 的優先順序是大於 三目運算子 ? : 的