博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[swift 进阶]读书笔记-第十章:协议 C10P1 面向协议编程 Overload Resolution for Free Functions...
阅读量:6812 次
发布时间:2019-06-26

本文共 3171 字,大约阅读时间需要 10 分钟。

第十章:协议 Protocol Protocol-Oriented Programming

前言:

swift 中的协议还是很酷的?

1.可以当做代理来使用。

2.可以让结构体枚举来满足协议。

3.还可以通过协议的extension为协议添加新方法。

4.协议允许我们动态派发

5.OC中共享代码通常使用的继承,swift中可以通过使用的是协议来共享代码

6.你可以为你的类添加协议去达到功能点整合

10.1 面向协议编程 Overload Resolution for Free Functions

这一小节举了个例子来介绍面相协议编程的几个使用场景

图形渲染的Demo

将 Core Graphics 的 CGContext 渲染到屏幕上,或者创建一个 SVG 格式的图形文件。我们可以从定义绘图 API 的最 小功能集的协议开始进行实现

1.先写协议方法

protocol Drawing {    mutating func addEllipse(rect: CGRect, fill: UIColor) mutating     func addRectangle(rect: CGRect, fill: UIColor)}复制代码

2.为CGContext添加扩展来满足协议

extension CGContext: Drawing {    func addEllipse(rect: CGRect, fill: UIColor) {        setFillColor(fill.cgColor)        fillEllipse(in: rect) }    func addRectangle(rect: CGRect, fill fillColor: UIColor) {         setFillColor(fillColor.cgColor)        fill(rect)    } }复制代码
  1. 对自定义的SVG类添加扩展来满足协议

谢谢的提醒,Demo中的类其实是省去了实现方法。

struct SVG {            /// XMLNode类是自定义类,这里省去了类实现代码。            var rootNode = XMLNode(tag: "svg")            mutating func append(node: XMLNode) {    rootNode.children.append(node) }    }    extension SVG: Drawing {        mutating func addEllipse(rect: CGRect, fill: UIColor) {            var attributes: [String:String] = rect.svgAttributes attributes["fill"] = String(hexColor: fill)            append(node: XMLNode(tag: "ellipse", attributes: attributes))        }        mutating func addRectangle(rect: CGRect, fill: UIColor) {            var attributes: [String:String] = rect.svgAttributes attributes["fill"] = String(hexColor: fill)            append(node: XMLNode(tag: "rect", attributes: attributes))        }    }复制代码

4.正式使用

var context: Drawing = SVG()let rect1 = CGRect(x: 0, y: 0, width: 100, height: 100)let rect2 = CGRect(x: 0, y: 0, width: 50, height: 50) context.addRectangle(rect: rect1, fill: .yellow) context.addEllipse(rect: rect2, fill: .blue)复制代码

协议扩展

经常看swift标准库API的同学肯定都用见过 苹果官方对协议扩展的使用。 这里讲讲优点: 1.不需要被强制使用某个父类

2.可以让已经存在的类型满足协议(比如我们让CGContext满足了Drawing)。子类就没那么灵活了,如果 CGContext 是一个类的话,我们无法以追溯的方式去变更它的父类。

3.协议既可以用于类,也可以用于结构体,而父类就无法和结构体一起使用了

4.当处理协议时,我们无需担心方法重写或者在正确的时间调用super这样的问题

在协议扩展中重写方法

沿着上面的Demo我们再看一个使用场景。

extension SVG {    mutating func addCircle(center: CGPoint, radius: CGFloat, fill: UIColor) {    var attributes: [String:String] = [ "cx": "\(center.x)",    "cy": "\(center.y)",    "r": "\(radius)",    ]    attributes["fill"] = String(hexColor: fill)    append(node: XMLNode(tag: "circle", attributes: attributes))    } }复制代码

我们去调用:

var sample = SVG()sample.addCircle(center: .zero, radius: 20, fill: .red) print(sample)/*
*/复制代码

发现正如我们所预料的,

如果我们把sample强转为Drawing

var otherSample: Drawing = SVG() otherSample.addCircle(center: .zero, radius: 20, fill: .red)print(otherSample)/*
*/复制代码

它返回的是 ellipse 元素,而不是我们所期望的 circle。 当我们将 otherSample 定义为 Drawing 类型的变量时,编译器会自动将 SVG 值封装到一个代表协议的类型中,这个封装被称作存在容器 (existential container)

当我们对存在容器调用 addCircle 时,方法是静态派发

想要将 addCircle 变为动态派发,我们可以将它添加到协议定义里:

protocol Drawing {    mutating func addEllipse(rect: CGRect, fill: UIColor)    mutating func addRectangle(rect: CGRect, fill: UIColor)    mutating func addCircle(center: CGPoint, radius: CGFloat, fill: UIColor)}复制代码

这个时候addCircle 方法变为了协议的一个自定义入口

转载地址:http://dakzl.baihongyu.com/

你可能感兴趣的文章
数据结构(C语言版)第四章:链表
查看>>
python核心编程:学习笔记4--函数和函数式编程
查看>>
CentOS7基于NFS服务的文件共享
查看>>
Linux passwd文件被清空
查看>>
Python OpenCV学习笔记之:图像阈值操作
查看>>
7月第1周中国.COM总量净增5.1万个 美国净减5.3万
查看>>
国内域名商.wang总量TOP10:易名中国跻身上榜
查看>>
5月钓鱼网站简报:共处理钓鱼网站2483个 环比下降
查看>>
10月国内网民上网时间分布:晚上8点出现峰值6.42%
查看>>
Echarts 基本设置 设置图表位置
查看>>
AliOS Things网络适配框架 - SAL
查看>>
Hystrix之外健壮微服务的新选择:Sentinel 发布首个生产版本
查看>>
数组 将一个数组的元素和另一个素组的元素相加,然后赋给第三个数组
查看>>
缓存服务varnish
查看>>
配置电信网通双线双IP的解决办法(Linux Ip Route2,基于源地址进行路由选择)
查看>>
Python常用模块汇总
查看>>
Java的类加载机制 为什么会出现锁机制?
查看>>
sa提开放系统下的虚拟新贵Virtualbox权技巧之xp_regwrite替换sethc.exe
查看>>
SpringBoot开发案例之整合Dubbo提供者(一)
查看>>
变态的程序
查看>>