Swift之where一般使用场景

Posted xujinzhong

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Swift之where一般使用场景相关的知识,希望对你有一定的参考价值。

使用where语句之前必须在where之前有一个主语变量名

  • 协议约束
//基类A继承了SomeProtocol协议才能添加扩展
extension SomeProtocol where Self: A {
    func showParamA() {
        print(self.a)
    }
}
  • for...in...遍历
let arr = [1, 2, 4, 5, 6]
    
for (index, value) in arr.enumerated() where value > 4 {
    print(index, value)
}
  • case 语句,相当于if判断
let arr = [1, 2, 4, 5, 6]
    
for (index, value) in arr.enumerated() where value > 4 {
   
    switch value {
    case let a where a < 6:
        print(index)
    default:
        print(value)
    }
}

  • if let 和 guard中,在swift4.0版本以后,使用逗号代替where
let str : String? = "hello"
    
if let value  = str, value.count == 5 {
    print(value)
}
    
guard let value  = str, value.count == 5  else { return }
print(value)

以上是关于Swift之where一般使用场景的主要内容,如果未能解决你的问题,请参考以下文章

如何使用 Swift 使用此代码片段为 iOS 应用程序初始化 SDK?

swift常用代码片段

swift 代码片段

swift 之 namespace

Swift:.contains(where:) 使用键路径表达式 [重复]

如何将这个 Objective-C 代码片段写入 Swift?