Java基礎之邏輯運算符&和&&的區別

    &&也稱「短路運算符」,意思爲若是第一個表達式就能決定整個表達式的結果,運算符右邊的表達式就再也不計算。而&則是整個表達式都會走一遍,舉個簡單的例子: public class LogicalOperater{ static int n=3; public static void main(String[] args){ boolean b=(3>7) &&
相關文章
相關標籤/搜索