iOS程序猿

Swift语法 Swift5 【08 - 属性】

2020-05-08  本文已影响0人  Liwx

iOS Swift 语法 底层原理内存管理分析 专题:【iOS Swift5语法】

00 - 汇编
01 - 基础语法
02 - 流程控制
03 - 函数
04 - 枚举
05 - 可选项
06 - 结构体和类
07 - 闭包
08 - 属性
09 - 方法
10 - 下标
11 - 继承
12 - 初始化器init
13 - 可选项


目录


01-属性



struct Circle {
    // 存储属性 占用内存
    var radius: Double
    // 计算属性 不占用内存
    var diameter: Double {
        set {
            radius = newValue / 2
        }
        get {
            radius * 2   // 如果只有单一表达式,可以省略return
        }
        /*
         也可以这样写
         set(newDiameter) {
         radius = newDiameter / 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

02-存储属性


struct Point {
    var x: Int
    var y: Int
    init() {
        x = 11
        y = 22
    }
}

struct Point {
    var x: Int = 11
    var y: Int = 22
}
var p = Point()

03-计算属性

struct Circle {
    var radius: Double
    var diameter: Double {
//        set(newDiameter) {    // 自定义
//            radius = newDiameter / 2
//        }
        set {
            radius = newValue / 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 }
}

04-枚举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

05-延迟存储属性(Lazy Stored Property)

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

class Person {
    lazy var car = Car()
//    lazy let car1 = Car()   // 延迟存储属性必须用var,  error: 'lazy' cannot be used on a let
    init() {
        print("Person init!")
    }
    func goOut() {
        car.run()
    }
}

let p = Person()    // 还没用到car延迟属性,因此此次不会创建car属性
//Person init!
print("------")
p.goOut()    // 用到car延迟属性,此时才创建Car实例对象,调用Car init 方法
//Car init!
//Car is running

class PhotoView {
    lazy var image: Image = {
       let url = "https://img.haomeiwen.com/i1253159/f30fb4cd197ff37d.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240"
        let data = Data(url: url)
        return Image(data: data)
    }()
}

06-延迟存储属性注意点

struct Point {
    var x = 0
    var y = 0
    lazy var z = 0
}

/*
let p = Point() // 此处用let,不能访问延迟存储属性p.z
print(p.z)  // error: cannot use mutating getter on immutable value: 'p' is a 'let' constant
 */

var p = Point() // 此处需用var, 才能正常访问p.z
print(p.z)

07-属性观察器(Property Observer)


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)

08-全局变量、局部变量

// 全局变量 计算属性 属性观察器应用
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()

09-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
image.png

10-inout的本质总结


11-类型属性(Type Property)


struct Car {
    static var count: Int = 0
    init() {
        Car.count += 1
        // 构造器,类似实例方法,实例方法不能调用使用 count 或者self.count 调用类型属性
//        count += 1  // Static member 'count' cannot be used on instance of type 'Car'
    }
}

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

12-类型属性细节


enum TestEnum : Int {
    static var count: Int = 0   // 存储类型属性、计算类
    case test1 = 1, test2 = 2
    func plus() {
        TestEnum.count += 1
    }
    static func getCount() -> Int { // 计算类型属性
        return count
    }
}

var t1 = TestEnum.test1
t1.plus()
print(TestEnum.count)
t1.plus()
print(TestEnum.count)
t1.plus()
print(TestEnum.count)
print(TestEnum.getCount())

13-单例模式

public class FileManager {
    public static let shared = FileManager()    // 默认是lazy 就算被多个线程同时访问,保证`只会初始化一次`(线程安全)
    private init() {  }
}
public class FileManager {
    public static let shared = { // 默认是lazy 就算被多个线程同时访问,保证`只会初始化一次`(线程安全)
        // do something
        return FileManager()
    }()
    private init() {  }
}

let manager = FileManager.shared

iOS Swift 语法 底层原理内存管理分析 专题:【iOS Swift5语法】

下一篇: 09 - 方法
上一篇: 07 - 闭包


上一篇下一篇

猜你喜欢

热点阅读