Swift之where一般使用场景
摘要:
使用where语句之前必须在where之前有一个主语变量名 协议约束 //基类A继承了SomeProtocol协议才能添加扩展 extension SomeProtocol where Self: A { func showParamA() { print(self.a) } } for...in. 阅读全文
posted @ 2020-03-08 12:18 东方🐺 阅读(1129) 评论(0) 推荐(0) 编辑