14-协议

  • 协议(Protocol)

protocol Drawable {
    func draw()
    var x: Int { get set }
    var y: Int { get }
    subscript(index: Int) -> Int { get set }
}
  • 协议可以采用定义方法、属性、下标的声明,协议可以被枚举、结构体、类遵守(多个协议之间用逗号隔开)
  • 协议中定义方法时不能有默认参数值
  • 默认情况下,协议中定义的内容必须全部都实现
  • 也有办法办到只实现部分内容
protocol Test1 {}
protocol Test2 {}
protocol Test3 {}

class TestClass: Test1, Test2, Test3 {}
  • 协议中的属性(Protocol)

protocol Drawable {
    func draw()
    var x: Int { get set }
    var y: Int { get }
    subscript(index: Int) -> Int { get set }
}
  • 协议中定义属性时必须用 var 关键字
  • 实现协议时的属性权限要 不小于 协议中定义的属性权限
  • 协议定义 get、set,用 var 存储属性或 get、set 计算属性去实现
  • 协议定义 get,用任何属性都可以实现
class Person: Drawable {
    func draw() {
        print("Person draw")
    }
    
    var x: Int = 0
    
    var y: Int = 0
    
    subscript(index: Int) -> Int {
        get {
            index
        }
        set {
            
        }
    }
}
class Person: Drawable {
    var x: Int {
        get { 0 }
        set {}
    }
    var y: Int { 0 }
    
    func draw() {
        print("Person draw")
    }

    subscript(index: Int) -> Int {
        get {
            index
        }
        set {
            
        }
    }
}
  • static、class

  • 为保证通用,协议中必须用 static 定义类型方法、类型属性、类型下标
protocol Drawable {
    static func draw()
}

class Person1: Drawable {
    static func draw() {
        print("Person1 draw")
    }
    
}

class Person2: Drawable {
    static func draw() {
        print("Person2 draw")
    }
}
  • mutating

  • 只有将协议的实例方法标记为 mutating
  • 才允许结构体、枚举的具体实现修改自身内存
  • 类在实现方法时不用加 mutating,枚举、结构体才需要 mutating
protocol Drawable {
    mutating func draw()
}

class Size: Drawable {
    var width: Int = 0
    func draw() {
        width = 10
    }
    
}

struct Point: Drawable {
    var x: Int = 10
    
    mutating func draw() {
        x = 10
    }
}
  • init

  • 协议中还可以定义初始化器 init
  • 非 final 类实现时必须加上 required
  • 如果从协议实现的初始化器,刚好是重写了父类的指定初始化器,那么这个初始化必须同时加 required、override
protocol Drawable {
    init(x: Int, y: Int)
}

class Size: Drawable {
    required init(x: Int, y: Int) {
        
    }
    

}

final class Point: Drawable {
    init(x: Int, y: Int) {
        
    }
    
}
  • init、init?、init!

  • 协议中定义的 init?、init!,可以用 init、init?、init!去实现
  • 协议中定义的 init,可以用 init、init!实现
protocol Livable {
    init()
    init?(age: Int)
    init!(no: Int)
}

class Person: Livable {
//    required init() {}
    required init!() {}
    
    required init?(age: Int) {}
//    required init!(age: Int) {}
//    required init(age: Int) {}
    
    required init!(no: Int) {}
//    required init?(no: Int) {}
//    required init(no: Int) {}
}
  • 协议的继承

  • 一个协议可以继承其他协议
protocol Runnable {
    func run()
}

protocol Livable: Runnable {
    func breath()
}

class Person: Livable {
    func breath() {}
    
    func run() {}
}
  • 协议组合

  • 协议组合,可以包含 1 个类 类型(最多 1 个)
protocol Livable {}
protocol Runnable {}
class Person {}

// 接收 Person 或者其子类的实例
func fn0(obj: Person) {}

// 接收遵循 Livable 协议的实例
func fn1(obj: Livable){}

// 接收同时遵守 Livable、Runnable 协议的实例
func fn2(obj: Livable & Runnable){}

// 接收同时遵守 Livable、Runnable 协议,并且是 Person 或者其子类的实例
func fn3(obj: Person & Livable & Runnable){}

typealias RealPerson = Person & Livable & Runnable
// 接收同时遵守 Livable、Runnable 协议,并且是 Person 或者其子类的实例
func fn4(obj: RealPerson){}
  • CaseIterable

  • 让枚举遵守 CaseIterable 协议,可以实现遍历枚举值
enum Season: CaseIterable {
    case spring, summer, autumn, winter
}

let seasons = Season.allCases
print(seasons.count)    // 4

for season in seasons {
    print(season)
} // spring summer autumn winter
  • CustomStringConvertible

  • 遵守 CustomStringConvertible, CustomDebugStringConvertible 协议, 都可以自定义实例的打印字符串
class Person: CustomStringConvertible, CustomDebugStringConvertible {
    var age = 0
    var description: String {"person_\(age)"}
    var debugDescription: String {"debug_person_\(age)"}
}

var person = Person()
print(person)       // person_0
debugPrint(person)  // debug_person_0

在这里插入图片描述

  • print 调用的是 CustomStringConvertible 协议的 description

  • debugPrint、po 调用的是 CustomDebugStringConvertible 协议的 debugDescription

  • Any、AnyObject

  • Swift 提供了两种特殊的类型 Any、AnyObject

  • Any:可以代表任意类型(枚举、结构体、类,函数类型)

  • AnyObject:可以代表任意类 类型(在协议后面写上:AnyObject 代表只有类能遵守这个协议)
    在协议后面写上:class 也代表只有类能遵守这个协议

class Student {}

var stu: Any = 10
stu = "Jack"
stu = Student()

// 创建 1 个能存放任意类型的数组
// var data = Array<Any>()
var data = [Any]()
data.append(1)
data.append(3.14)
data.append(Student())
data.append("Jack")
data.append({ 10 })
  • is、as?、as!、as

  • is 用来判断是否为某种类型,as 用来判断强制类型转换
protocol Runnable {
    func run()
}
class Person {}
class Student: Person, Runnable {
    func run() {
        print("Student run")
    }
    
    func study() {
        print("Student study")
    }
}
var stu: Any = 10
print(stu is Int)       // true
stu = "jack"
print(stu is String)    // true
stu = Student()
print(stu is Person)    // true
print(stu is Student)   // true
print(stu is Runnable)  // true
var stu: Any = 10
(stu as? Student)?.study()  // 没有调用 study

stu = Student()
(stu as? Student)?.study()  // Student study
(stu as! Student).study()   // Student study
(stu as? Runnable)?.run()   // Student run
var data = [Any]()
data.append(Int("123") as Any)

var d = 10 as Double
print(d)    // 10.0
  • X.self、X.Type、AnyClass

  • X.self 是一个元类型(metadata)的指针,metadata 存放着类型相关信息
  • X.self 属于 X.Type 类型
class Person {}
class Student: Person {}

var perType: Person.Type = Person.self
var stuType: Student.Type = Student.self
perType = Student.self

var anyType: AnyObject.Type = Person.self
anyType = Student.self

public typealias AnyClass = AnyObject.Type
var anyType2: AnyClass = Person.self
anyType2 = Student.self

var per = Person()
var perType1 = type(of: per) // Person.self
print(Person.self == type(of: per))
  • 元类型的应用

class Animal { required init() {} }
class Cat: Animal {}
class Dog: Animal {}
class Pig: Animal {}

func create(_ clsse: [Animal.Type]) -> [Animal] {
    var arr = [Animal]()
    for cls in clsse {
        arr.append(cls.init())
    }
    
    return arr
}
// [SwiftTest.Cat, SwiftTest.Dog, SwiftTest.Pig]
print(create([Cat.self, Dog.self, Pig.self]))
class Person {
    var age: Int = 0
}
class Student: Person {
    var no: Int = 0
}

print(class_getInstanceSize(Student.self))  // 32
print(class_getSuperclass(Student.self)!)   // Person
print(class_getSuperclass(Person.self)!)    // _TtCs12_SwiftObject
class Person {
    var age = 1
    static var count = 2
    func run() {
        print(self.age)     // 1
        print(Self.count)   // 2
    }
}
  • Self 一般用作返回值类型,限定返回值跟方法调用者必须是同一类型(也可作为参数类型)
protocol Runnable {
    func test() -> Self
}

class Person: Runnable {
    required init() {}
    func test() -> Self {
        type(of: self).init()
    }
}

class Student: Person {}
var p = Person()
// Person
print(p.test())

var stu = Student()
// Student
print(stu.test())

本文章只是本人的学习笔记!

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值