Swiftの論理演算子のサンプル
説明
演算子 意味
&& 両方 true の時のみ true を返す
|| 片方が true であれば true を返す
! 括弧の中が true であれば false、false であれば true を返す
使用例
let x = 66 let y = 66 print(x == y && x < 57) print(x == y || x < 57)
結果
false
true
Coding Changes the World
説明
演算子 意味
&& 両方 true の時のみ true を返す
|| 片方が true であれば true を返す
! 括弧の中が true であれば false、false であれば true を返す
使用例
let x = 66 let y = 66 print(x == y && x < 57) print(x == y || x < 57)
結果
false
true