[Swift5.1] 8-属性

2020-05-29  本文已影响0人  codeTao

属性

Swift中跟实例相关的属性可以分为2大类

存储属性(Stored Property)

计算属性(Computed Property)

struct Circle {
    // 存储属性
    var radius: Double
    // 计算属性
    var diameter: Double {
        set {
            radius = newValue / 2
        }
        get {
            radius * 2
        }
    }
}

var circle = Circle(radius: 5)
print(circle.radius) // 5.0
print(circle.diameter) // 10.0

circle.diameter = 12
print(circle.radius) // 6.0
print(circle.diameter) // 12.0

print(MemoryLayout<Circle>.stride) // 8

存储属性

关于存储属性,Swift有个明确的规定:

计算属性

struct Circle {
    var radius: Double
    var diameter: Double {
        set(newDiameter) {
            radius = newDiameter / 2
        }
        get {
            radius * 2
        }
    }
}
struct Circle {
    var radius: Double
    var diameter: Double {
        get {
            radius * 2
        }
    }
}

struct Circle {
    var radius: Double
    var diameter: Double { radius * 2 }
}

枚举rawValue原理

枚举原始值rawValue的本质是:只读计算属性

enum TestEnum : Int {
    case test1 = 1, test2 = 2, test3 = 3
    var rawValue: Int {
        switch self {
        case .test1:
            return 10
        case .test2:
            return 11
        case .test3:
            return 12
        }
    }
}
print(TestEnum.test3.rawValue) // 12

延迟存储属性(Lazy Stored Property)

使用lazy可以定义一个延迟存储属性,在第一次用到属性的时候才会进行初始化

class Car{
    init() {
        print("Car init!")
    }
    func run() {
        print("Car is running!")
    }
}

class Person{
    lazy var car = Car()
    init() {
        print("Person init!")
    }
    func goOut() {
        car.run()
    }
}

let p = Person()
print("------")
p.goOut()

输出:

Person init!
------
Car init!
Car is running!
class PhotoView {
    lazy var image: Image = {
        let url = "https://www.baidu.com/xx.png"
        let data = Data(url: url)
        return Image(data: data)
    }()
}

延迟存储属性注意点:

属性观察器(Property Observer)

可以为非lazyvar存储属性设置属性观察器

struct Circle {
    var radius: Double {
        willSet {
            print("willSet", newValue)
        }
        didSet {
            print("didSet", oldValue, radius)
        }
    }
    init() {
        self.radius = 1.0  
        print("Circle init!")
    }
}

// Circle init!
var circle = Circle()

// willSet 10.5
// didSet 1.0 10.5
circle.radius = 10.5

// 10.5  print(circle.radius)

全局变量、局部变量

属性观察器、计算属性的功能,同样可以应用在全局变量、局部变量身上

var num: Int {
    get {
        return 10
    }
    set {
        print("setNum", newValue)
    }
}
num = 11 // setNum 11
print(num) // 10
func test() {
    var age = 10 {
        willSet {
            print("willSet", newValue)
        }
        didSet {
            print("didSet", oldValue, age)
        }
    }
    age = 11
    // willSet 11
    // didSet 10 11
}
test()

inout的再次研究

struct Shape {
    var width: Int
    var side: Int {
        willSet {
            print("willSetSide", newValue)
        }
        didSet {
            print("didSetSide", oldValue, side)
        }
    }
    var girth: Int {
        set {
            width = newValue / side
            print("setGirth", newValue)
        }
        get {
            print("getGirth")
            return width * side
        }
    }
    func show() {
        print("width=\(width), side=\(side), girth=\(girth)")
    }
}

func test(_ num: inout Int) {
    num = 20
}

var s = Shape(width: 10, side: 4)
test(&s.width)
s.show()
print("----------")
test(&s.side)  
s.show()
print("----------")
test(&s.girth)  
s.show()

打印:

getGirth
width=20, side=4, girth=80
----------
willSetSide 20
didSetSide 4 20
getGirth
width=20, side=20, girth=400
----------
getGirth
setGirth 20
getGirth
width=1, side=20, girth=20

inout的本质总结

1)如果实参有物理内存地址,且没有设置属性观察器
直接将实参的内存地址传入函数(实参进行引用传递)

2)如果实参是计算属性 或者 设置了属性观察器
采取了Copy In Copy Out的做法

总结: inout的本质就是引用传递(地址传递)

类型属性(Type Property)

严格来说,属性可以分为:
1)实例属性(Instance Property):只能通过实例去访问

2)类型属性(Type Property):只能通过类型去访问

struct Car {
    static var count: Int = 0
    init() {
        Car.count += 1
    }
}

let c1 = Car()
let c2 = Car()
let c3 = Car()
print(Car.count) // 3

类型属性细节

单例模式

public class FileManager {
    public static let shared = FileManager()
    private init() { }
}
public class FileManager {
    public static let shared = {
        // ....
        // ....
        return FileManager()
    }()
    private init() { }
}
上一篇下一篇

猜你喜欢

热点阅读