重视我,每天共享一个关于 iOS 的新知识

盘点 swift 中 where 关键字的所有用法,你知道多少?

前言

where 是 Swift 中一个强壮的关键字,能够轻松过滤掉一些值。它能够用于许多不同的表达式中,今天就来盘点一下。

在 switch 中运用

switch 语句中的 case 中,能够用 where 关键字做二次筛选,举个例子:

let point = (x: 3, y: 4)
switch point {
case let (x, y) where x == y:
    print("((x), (y)) is on the line x == y")
case let (x, y) where x == -y:
    print("((x), (y)) is on the line x == -y")
case let (x, y):
    print("((x), (y)) is just some arbitrary point")
}

在这个示例中,咱们有一个点的坐标点 (x, y)。在 switchcase 中,咱们运用了 where 子句来判断点是否在 x == y 这条直线上,或是在 x == -y 这条直线上。

假如不满意 where 子句的条件,就会履行默许的 case 分支。

最终的输出为:(3, 4) is just some arbitrary point

在 for 循环中的运用

在 for 循环中,也能够运用 where 子句来添加条件判断:

let numbers = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
for number in numbers where number % 2 == 0 {
    print(number)
}
// 输出:
// 2
// 4
// 6
// 8
// 10

在这个例子中,咱们遍历数字数组,但只打印出能被 2 整除的偶数。

在协议扩展中的用法

咱们都知道,在 swift 中能够通过为协议添加扩展 (protocol extension) 来完成协议的默许完成。此时能够在扩展的 where 子句中添加束缚:

protocol Shape {
    func draw()
}
extension Shape where Self: Equilateral {
    func draw() {
        // 制作等边形
    }
}
extension Shape where Self: Rectangle {
    func draw() {
        // 制作矩形
    }
}
struct Square: Shape, Equilateral { }
let square = Square()
square.draw() // 制作等边形

咱们为 Shape 协议添加了两个扩展,其间为 EquilateralRectangle 添加了 draw 办法的默许完成。

在扩展的 where 子句中指定了 Self 的束缚类型。然后 Square 结构体完成了 ShapeEquilateral 协议,此时会调用 Equilateraldraw 完成。

通过 where 子句,能够依据协议扩展的指定类型进行有条件的默许完成,使协议扩展更加灵敏。

各种高阶函数中的用法

1、查找满意条件的第一个元素

let numbers = [1, 2, 3, 4, 5]
let number = numbers.first(where: { $0 > 2 })
print(number!) // 输出: 3

2、查找满意条件的最终一个元素

let numbers = [1, 2, 3, 4, 5]
let number = numbers.last(where: { $0 > 2 })
print(number!) // 输出: 5

3、判断是否包括满意条件的元素

let numbers = [1, 2, 3, 4, 5]
let isContains = numbers.contains(where: { $0 > 2 })
print(isContains) // 输出: true

4、查找满意条件的第一个元素的下标

let numbers = [1, 2, 3, 4, 5]
let index = numbers.firstIndex(where: { $0 > 2 })
print(index!) // 输出: 2

5、查找满意条件的最终一个元素的下标

let numbers = [1, 2, 3, 4, 5]
let index = numbers.lastIndex(where: { $0 > 2 })
print(index!) // 输出: 4

6、将数组按条件拆分

let numbers = [1, 2, 3, 4, 5]
let array = numbers.split(whereSeparator: { $0 > 3 || $0 < 2 } )
print(array) // 输出: [ArraySlice([2, 3])]

在泛型函数中的用法

能够用 where 关键字向泛型参数添加束缚:

protocol Printable {
    func print()
}
func printBoth<P1: Printable, P2: Printable>(_ p1: P1, _ p2: P2) where P1 == P2 {
    p1.print()
    p2.print()
}

在协议声明中的运用

在协议的声明中,能够为关联类型 (associatedtype) 的类型添加束缚:

protocol Stack {
  associatedtype Element where Element: CustomStringConvertible
  mutating func push (_ element: Element)
  mutating func pop () -> Element?
}

这儿每天共享一个 iOS 的新知识,快来重视我吧

本文同步自微信大众号 “iOS新知”,每天准时共享一个新知识,这儿只是同步,想要及时学到就来重视我吧!