码迷,mamicode.com
首页 > 移动开发 > 详细

iOS-swift-协议和拓展

时间:2017-06-18 18:53:11      阅读:193      评论:0      收藏:0      [点我收藏+]

标签:turn   esc   self   int   存在   类型   结构   imp   ext   

1 协议(protocol

    使用关键字 protocol 创建协议。

    protocol ExampleProtocol {
        var simpleDescription: String { get }
        mutating func adjust()
    }

    类、枚举和结构体都支持协议。

lass SimpleClass: ExampleProtocol {
    var simpleDescription: String = "A very simple class."
    var anotherProperty: Int = 69105
    func adjust() {
        simpleDescription += "  Now 100% adjusted."
    }
}
var a = SimpleClass()
a.adjust()
let aDescription = a.simpleDescription
 
struct SimpleStructure: ExampleProtocol {
    var simpleDescription: String = "A simple structure"
    mutating func adjust() {
        simpleDescription += " (adjusted)"
    }
}
var b = SimpleStructure()
b.adjust()
let bDescription = b.simpleDescription

      注意关键字 mutating,在结构体 SimpleStructure 中使用 mutating 实现协议中的方法。而在类中 SimpleClass,却不需要关键字 mutating 实现协议方法,因为类中方法本身就不需要关键字mutating 声明。

2 拓展(extension

    使用关键字 extension 创建一个已存在类型的拓展。

    extension Int: ExampleProtocol {
        var simpleDescription: String {
            return "The number \(self)"
        }
        mutating func adjust() {
            self += 42
        }
    }
    print(7.simpleDescription)

 

恩,努力。

iOS-swift-协议和拓展

标签:turn   esc   self   int   存在   类型   结构   imp   ext   

原文地址:http://www.cnblogs.com/mengdongsky/p/7044808.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!