1 赋值运算符(Assignment Operator)
赋值操作并不返回任何值123let b = 10var c = 5let (x, y) = (2, 5)
2 算术运算符(Arithmetic Operators)
|
|
3 复合赋值(Compound Assignment Operators)
复合赋值运算没有返回值
|
|
4 比较运算符(Comparsion Operators)
|
|
5 三目运算符(Ternary Conditional Operator)
|
|
6 空合运算符(Nil Coalescing Operator)
|
|
7 区间运算符(Range Operators)
|
|
8 逻辑运算(Logical Operators) 操作对象是逻辑布尔值
|
|
playground文件在andyRon/LearnSwift