/**
闭区间运算符: (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) 表示a到b 的前一个元素
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