2.8 Swift区间运算符

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

/**

闭区间运算符: a...b

(1..3) 代表的就是 1,2,3

半闭区间 (a..b) a b 的前一个元素

*/

// _ 表示通配

for _ in 1...5

{

print("hello")

}

print("---------->")

for i in 1...5

{

print(i)

}

print("---------->")

// 半闭区间 (a..<b) 表示ab 的前一个元素

for i in 1..<4

{

print(i)

}

// Binary operator '..<' cannot be applied to operands of type 'Int' and 'Double' 不应该放浮点数

// for i in 1..<4.3

// {

// print(i)

// }

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

猜你在找的Swift相关文章