深刻解析Swift說話中的協定。本站提示廣大學習愛好者:(深刻解析Swift說話中的協定)文章只能為提供參考,不一定能成為您想要的結果。以下是深刻解析Swift說話中的協定正文
協定為辦法,屬性和其他請求的功效供給了一個底本。它只是描寫了辦法或屬性的骨架,而不是完成。辦法和屬性完成還可以經由過程界說類,函數和列舉完成。協定的分歧性是指辦法或屬性知足協定的請求。
語法
協定也遵守相似類,構造和列舉的語法:
protocol SomeProtocol {
// protocol definition
}
協定在類,構造或列舉類型定名聲明。單個和多個協定的聲明也是可以的。假如多個協定劃定,它們必需用逗號分隔。
struct SomeStructure: Protocol1, Protocol2 {
// structure definition
}
當一個協定在超類中界說,協定稱號應遵守定名在超類以後。
class SomeClass: SomeSuperclass, Protocol1, Protocol2 {
// class definition
}
屬性和辦法的請求
協定用於指定特定類型的屬性或屬性的實例。它僅指定類型或實例屬性零丁而不是指定它能否是一個存儲或盤算屬性。別的,它是用來指定的屬性能否為“可獲得'或'可設置”。
屬性請求由 “var” 症結字作為屬性變量聲明。 {get set} 應用它們類型聲明後聲明屬性可獲得和可設置。 可獲得是由它們的類型{get}取屬性聲明後說起。
protocol classa {
var marks: Int { get set }
var result: Bool { get }
func attendance() -> String
func markssecured() -> String
}
protocol classb: classa {
var present: Bool { get set }
var subject: String { get set }
var stname: String { get set }
}
class classc: classb {
var marks = 96
let result = true
var present = false
var subject = "Swift Protocols"
var stname = "Protocols"
func attendance() -> String {
return "The \(stname) has secured 99% attendance"
}
func markssecured() -> String {
return "\(stname) has scored \(marks)"
}
}
let studdet = classc()
studdet.stname = "Swift"
studdet.marks = 98
studdet.markssecured()
println(studdet.marks)
println(studdet.result)
println(studdet.present)
println(studdet.subject)
println(studdet.stname)
當我們應用 playground 運轉下面的法式,獲得以下成果。
98 true false Swift Protocols Swift
分歧變形辦法請求
protocol daysofaweek {
mutating func print()
}
enum days: daysofaweek {
case sun, mon, tue, wed, thurs, fri, sat
mutating func print() {
switch self {
case sun:
self = sun
println("Sunday")
case mon:
self = mon
println("Monday")
case tue:
self = tue
println("Tuesday")
case wed:
self = wed
println("Wednesday")
case mon:
self = thurs
println("Thursday")
case tue:
self = fri
println("Friday")
case sat:
self = sat
println("Saturday")
default:
println("NO Such Day")
}
}
}
var res = days.wed
res.print()
當我們應用 playground 運轉下面的法式,獲得以下成果。
Wednesday
初始化法式請求
Swift 許可用戶初始化協定遵守相似於正常初始化類型的分歧性。
語法
protocol SomeProtocol {
init(someParameter: Int)
}
示例
protocol tcpprotocol {
init(aprot: Int)
}
協定初始化法式請求類完成
指定或初始化便捷許可用戶初始化協定來預留“required”症結字,以相符其尺度。
class SomeClass: SomeProtocol {
required init(someParameter: Int) {
// initializer implementation statements
}
}
protocol tcpprotocol {
init(aprot: Int)
}
class tcpClass: tcpprotocol {
required init(aprot: Int) {
}
}
協定分歧性包管一切子類顯式或繼續完成“required”修辭符。
當一個子類籠罩其超類的初始化必需由“override”潤飾符症結字指定。
protocol tcpprotocol {
init(no1: Int)
}
class mainClass {
var no1: Int // local storage
init(no1: Int) {
self.no1 = no1 // initialization
}
}
class subClass: mainClass, tcpprotocol {
var no2: Int
init(no1: Int, no2 : Int) {
self.no2 = no2
super.init(no1:no1)
}
// Requires only one parameter for convenient method
required override convenience init(no1: Int) {
self.init(no1:no1, no2:0)
}
}
let res = mainClass(no1: 20)
let print = subClass(no1: 30, no2: 50)
println("res is: \(res.no1)")
println("res is: \(print.no1)")
println("res is: \(print.no2)")
當我們應用 playground 運轉下面的法式,獲得以下成果。
res is: 20 res is: 30 res is: 50
協定作為類型
相反,在協定履行的功效被用作函數,類,辦法等類型。
協定可以拜訪作為類型:
函數,辦法或初始化作為一個參數或前往類型
常量,變量或屬性
數組,字典或其他容器作為項目
protocol Generator {
typealias members
func next() -> members?
}
var items = [10,20,30].generate()
while let x = items.next() {
println(x)
}
for lists in map([1,2,3], {i in i*5}) {
println(lists)
}
println([100,200,300])
println(map([1,2,3], {i in i*10}))
當我們應用 playground 運轉下面的法式,獲得以下成果。
10 20 30 5 10 15 [100, 200, 300] [10, 20, 30]
添加協定分歧性與擴大
已有的類型可以經由過程和應用擴大相符新的協定。新屬性,辦法和下標可以被添加到現有的類型在擴大的贊助下。
protocol AgeClasificationProtocol {
var age: Int { get }
func agetype() -> String
}
class Person {
let firstname: String
let lastname: String
var age: Int
init(firstname: String, lastname: String) {
self.firstname = firstname
self.lastname = lastname
self.age = 10
}
}
extension Person : AgeClasificationProtocol {
func fullname() -> String {
var c: String
c = firstname + " " + lastname
return c
}
func agetype() -> String {
switch age {
case 0...2:
return "Baby"
case 2...12:
return "Child"
case 13...19:
return "Teenager"
case let x where x > 65:
return "Elderly"
default:
return "Normal"
}
}
}
協定繼續
Swift 許可協定繼續其界說的屬性的屬性。它相似於類的繼續,但用逗號分隔羅列選擇多個繼續協定。
protocol classa {
var no1: Int { get set }
func calc(sum: Int)
}
protocol result {
func print(target: classa)
}
class student2: result {
func print(target: classa) {
target.calc(1)
}
}
class classb: result {
func print(target: classa) {
target.calc(5)
}
}
class student: classa {
var no1: Int = 10
func calc(sum: Int) {
no1 -= sum
println("Student attempted \(sum) times to pass")
if no1 <= 0 {
println("Student is absent for exam")
}
}
}
class Player {
var stmark: result!
init(stmark: result) {
self.stmark = stmark
}
func print(target: classa) {
stmark.print(target)
}
}
var marks = Player(stmark: student2())
var marksec = student()
marks.print(marksec)
marks.print(marksec)
marks.print(marksec)
marks.stmark = classb()
marks.print(marksec)
marks.print(marksec)
marks.print(marksec)
當我們應用 playground 運轉下面的法式,獲得以下成果。
Student attempted 1 times to pass Student attempted 1 times to pass Student attempted 1 times to pass Student attempted 5 times to pass Student attempted 5 times to pass Student is absent for exam Student attempted 5 times to pass Student is absent for exam
只要類協定
當協定被界說,而且用戶想要界說協定與它應當經由過程界說類第一後跟協定的繼續列表被添加的類。
protocol tcpprotocol {
init(no1: Int)
}
class mainClass {
var no1: Int // local storage
init(no1: Int) {
self.no1 = no1 // initialization
}
}
class subClass: mainClass, tcpprotocol {
var no2: Int
init(no1: Int, no2 : Int) {
self.no2 = no2
super.init(no1:no1)
}
// Requires only one parameter for convenient method
required override convenience init(no1: Int) {
self.init(no1:no1, no2:0)
}
}
let res = mainClass(no1: 20)
let print = subClass(no1: 30, no2: 50)
println("res is: \(res.no1)")
println("res is: \(print.no1)")
println("res is: \(print.no2)")
當我們應用 playground 運轉下面的法式,獲得以下成果。
res is: 20 res is: 30 res is: 50
協定組合
Swift 許可多個協定在協定組合的贊助下挪用一次。
語法
protocol<SomeProtocol, AnotherProtocol>
示例
protocol stname {
var name: String { get }
}
protocol stage {
var age: Int { get }
}
struct Person: stname, stage {
var name: String
var age: Int
}
func print(celebrator: protocol<stname, stage>) {
println("\(celebrator.name) is \(celebrator.age) years old")
}
let studname = Person(name: "Priya", age: 21)
print(studname)
let stud = Person(name: "Rehan", age: 29)
print(stud)
let student = Person(name: "Roshan", age: 19)
print(student)
當我們應用 playground 運轉下面的法式,獲得以下成果。
Priya is 21 years old Rehan is 29 years old Roshan is 19 years old
檢討協定分歧性
協定分歧性是 is 和 as 相似於類型轉換的操作符測試。
假如一個實例相符協定尺度,is運算符假如掉敗前往false ,不然前往true。
as? 版本是向下轉型操作符,前往協定的類型的可選值,而且假如該值是nil ,實例不相符該協定。
as 版是向下轉型操作符,強迫向下轉型的協定類型並觸發一個運轉時毛病,假如向下轉型不會勝利。
import Foundation
@objc protocol rectangle {
var area: Double { get }
}
@objc class Circle: rectangle {
let pi = 3.1415927
var radius: Double
var area: Double { return pi * radius * radius }
init(radius: Double) { self.radius = radius }
}
@objc class result: rectangle {
var area: Double
init(area: Double) { self.area = area }
}
class sides {
var rectsides: Int
init(rectsides: Int) { self.rectsides = rectsides }
}
let objects: [AnyObject] = [Circle(radius: 2.0),result(area: 198),sides(rectsides: 4)]
for object in objects {
if let objectWithArea = object as? rectangle {
println("Area is \(objectWithArea.area)")
} else {
println("Rectangle area is not defined")
}
}
當我們應用 playground 運轉下面的法式,獲得以下成果。
Area is 12.5663708 Area is 198.0 Rectangle area is not defined