2.6 Swift关系运算符

前端之家收集整理的这篇文章主要介绍了2.6 Swift关系运算符前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

/**

赋值运算符

> < <= >= !=

三元条件运算符

? :

*/

let res:Bool = 5 == 5

print(res)

if 5 > 3

{

print(res)

}

let max = 3 > 2 ? 3 : 2

print(max)

原文链接:https://www.f2er.com/swift/322499.html

猜你在找的Swift相关文章