Swiftの論理演算子のサンプル

2021年12月20日

説明
演算子 意味
&& 両方 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

Swift

Posted by arkgame