- 921. Minimum Add to Make Parentheses Valid 使括号有效的最少添加
- 915. Partition Array into Disjoint Intervals 分割数组
- 932. Beautiful Array 漂亮数组
- 940. Distinct Subsequences II 不同的子序列 II
协议规定了用来实现某一特定功能所必需的方法和属性
任意能够满足协议要求的类型被称为遵循(conform)这个协议
类,结构体或枚举类型都可以遵循协议,并提供具体实现来完成协议定义的方法和功能
Swift 使用 protocol 关键字定义协议的语法格式如下
protocol SomeProtocol
{
// 协议内容
}
要使类遵循某个协议,需要在类型名称后加上协议名称,中间以冒号 : 分隔,作为类型定义的一部分
遵循多个协议时,各协议之间用逗号 , 分隔
struct SomeStructure: FirstProtocol, AnotherProtocol
{
// 结构体内容
}
如果类在遵循协议的同时拥有父类,应该将父类名放在协议名之前,以逗号 , 分隔
class SomeClass: SomeSuperClass, FirstProtocol, AnotherProtocol
{
// 类的内容
}
协议用于指定特定的实例属性或类属性,而不用指定是存储型属性或计算型属性
此外还必须指明是只读的还是可读可写的
协议中的通常用 var 来声明变量属性,在类型声明后加上 { set get } 来表示属性是可读可写的
只读属性则用 { get } 来表示
import Cocoa
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 协议"
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()
print(studdet.marks)
print(studdet.result)
print(studdet.present)
print(studdet.subject)
print(studdet.stname)
编译运行以上 Swift 范例,输出结果为
$ swift main.swift
98
true
false
Swift 协议
Swift
有时需要在方法中改变它的实例
例如,值类型(结构体,枚举)的实例方法中,将 mutating 关键字作为函数的前缀,写在 func 之前,表示可以在该方法中修改它所属的实例及其实例属性的值
import Cocoa
protocol daysofaweek
{
mutating func show()
}
enum days: daysofaweek
{
case sun, mon, tue, wed, thurs, fri, sat
mutating func show() {
switch self {
case .sun:
self = .sun
print("Sunday")
case .mon:
self = .mon
print("Monday")
case .tue:
self = .tue
print("Tuesday")
case .wed:
self = .wed
print("Wednesday")
case .thurs:
self = .thurs
print("Wednesday")
case .fri:
self = .fri
print("Wednesday")
case .sat:
self = .sat
print("Saturday")
default:
print("NO Such Day")
}
}
}
var res = days.wed
res.show()
编译运行以上 Swift 范例,输出结果为
$ swift main.swift
Wednesday
协议可以要求它的遵循者实现指定的构造器
可以像书写普通的构造器那样,在协议的定义里写下构造器的声明,但不需要写花括号和构造器的实体
protocol SomeProtocol
{
init(someParameter: Int)
}
比如
protocol tcpprotocol {
init(aprot: Int)
}
可以在遵循该协议的类中实现构造器,并指定其为类的指定构造器或者便利构造器
在这两种情况下,都必须给构造器实现标上 required 修饰符
class SomeClass: SomeProtocol
{
required init(someParameter: Int)
{
// 构造器实现
}
}
protocol tcpprotocol
{
init(aprot: Int)
}
class tcpClass: tcpprotocol
{
required init(aprot: Int)
{
}
}
使用required 修饰符可以保证:
所有的遵循该协议的子类,同样能为构造器规定提供一个显式的实现或继承实现
如果一个子类重写了父类的指定构造器,并且该构造器遵循了某个协议的规定,那么该构造器的实现需要被同时标示 required 和 override 修饰符
protocol tcpprotocol
{
init(no1: Int)
}
class mainClass
{
var no1: Int // 局部变量
init(no1: Int) {
self.no1 = no1 // 初始化
}
}
class subClass: mainClass, tcpprotocol
{
var no2: Int
init(no1: Int, no2 : Int) {
self.no2 = no2
super.init(no1:no1)
}
// 因为遵循协议,需要加上"required"; 因为继承自父类,需要加上"override"
required override convenience init(no1: Int) {
self.init(no1:no1, no2:0)
}
}
let res = mainClass(no1: 20)
let show = subClass(no1: 30, no2: 50)
print("res is: \(res.no1)")
print("res is: \(show.no1)")
print("res is: \(show.no2)")
编译运行以上 Swift 范例,输出结果为
$ swift main.swift
res is: 20
res is: 30
res is: 50
尽管协议本身并不实现任何功能,但是协议可以被当做类型来使用
协议可以像其它普通类型一样使用,使用场景:
1、 作为函数、方法或构造器中的参数类型或返回值类型;
2、 作为常量、变量或属性的类型;
3、 作为数组、字典或其他容器中的元素类型;
import Cocoa
protocol Generator
{
associatedtype members
func next() -> members?
}
var items = [10,20,30].makeIterator()
while let x = items.next()
{
print(x)
}
for lists in [1,2,3].map( {i in i*5})
{
print(lists)
}
print([100,200,300])
print([1,2,3].map({i in i*10}))
编译运行以上 Swift 范例,输出结果为
$ swift main.swift
10
20
30
5
10
15
[100, 200, 300]
[10, 20, 30]
可以可以通过扩展来扩充已存在类型( 类,结构体,枚举等)
扩展可以为已存在的类型添加属性,方法,下标脚本,协议等成员
import Cocoa
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"
}
}
}
协议能够继承一个或多个其他协议,可以在继承的协议基础上增加新的内容要求
协议的继承语法与类的继承相似,多个被继承的协议间用逗号 (,) 分隔
protocol InheritingProtocol: SomeProtocol, AnotherProtocol {
// 协议定义
}
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
print("学生尝试 \(sum) 次通过")
if no1 <= 0 {
print("学生缺席考试")
}
}
}
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)
编译运行以上 Swift 范例,输出结果为
$ swift main.swift
学生尝试 1 次通过
学生尝试 1 次通过
学生尝试 1 次通过
学生尝试 5 次通过
学生尝试 5 次通过
学生缺席考试
学生尝试 5 次通过
学生缺席考试
可以在协议的继承列表中,通过添加 class 关键字,限制协议只能适配到类(class)类型
该class 关键字必须是第一个出现在协议的继承列表中,其后,才是其他继承协议
protocol SomeClassOnlyProtocol: class, SomeInheritedProtocol
{
// 协议定义
}
protocol TcpProtocol
{
init(no1: Int)
}
class MainClass
{
var no1: Int // 局部变量
init(no1: Int) {
self.no1 = no1 // 初始化
}
}
class SubClass: MainClass, TcpProtocol
{
var no2: Int
init(no1: Int, no2 : Int) {
self.no2 = no2
super.init(no1:no1)
}
// 因为遵循协议,需要加上"required"; 因为继承自父类,需要加上"override"
required override convenience init(no1: Int) {
self.init(no1:no1, no2:0)
}
}
let res = MainClass(no1: 20)
let show = SubClass(no1: 30, no2: 50)
print("res is: \(res.no1)")
print("res is: \(show.no1)")
print("res is: \(show.no2)")
编译运行以上 Swift 范例,输出结果为
$ swift main.swift
res is: 20
res is: 30
res is: 50
Swift 支持合成多个协议,在需要同时遵循多个协议时非常有用,一般用在形参声明中
协议合成使用 & 符号
下面的代码使用 & 声明一个参数必须遵循多个协议
func show(celebrator: Stname & Stage)
{
print("\(celebrator.name) is \(celebrator.age) years old")
}
protocol Stname
{
var name: String { get }
}
protocol Stage
{
var age: Int { get }
}
struct Person: Stname, Stage
{
var name: String
var age: Int
}
func show(celebrator: Stname & Stage)
{
print("\(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)
编译运行以上 Swift 范例,输出结果为
Person(name: "Priya", age: 21)
Person(name: "Rehan", age: 29)
Person(name: "Roshan", age: 19)
使用is 和 as 操作符来检查是否遵循某一协议或强制转化为某一类型
下面的代码定义了一个 HasArea 的协议,要求有一个 Double 类型可读的 area
protocol HasArea {
var area: Double { get }
}
// 定义了Circle类,都遵循了HasArea协议
class Circle: HasArea {
let pi = 3.1415927
var radius: Double
var area: Double { return pi * radius * radius }
init(radius: Double) { self.radius = radius }
}
// 定义了Country类,都遵循了HasArea协议
class Country: HasArea {
var area: Double
init(area: Double) { self.area = area }
}
// Animal是一个没有实现HasArea协议的类
class Animal {
var legs: Int
init(legs: Int) { self.legs = legs }
}
let objects: [AnyObject] = [
Circle(radius: 2.0),
Country(area: 243_610),
Animal(legs: 4)
]
for object in objects {
// 对迭代出的每一个元素进行检查,看它是否遵循了HasArea协议
if let objectWithArea = object as? HasArea {
print("面积为 \(objectWithArea.area)")
} else {
print("没有面积")
}
}
编译运行以上 Swift 范例,输出结果为
$ swift main.swift
面积为 12.5663708
面积为 243610.0
没有面积
有没有办法在 .swift 文件(编译成 .swift 模块)中声明函数,如下所示: 你好.swift func hello_world() { println("hello world")
我正在尝试使用 xmpp_messenger_ios 和 XMPPFramework 在 iOS 上执行 MUC 这是加入房间的代码。 func createOrJoinRoomOnXMPP()
我想在我的应用程序上创建一个 3D Touch 快捷方式,我已经完成了有关快捷方式本身的所有操作,它显示正确,带有文本和图标。 当我运行这个快捷方式时,我的应用程序崩溃了,因为 AppDelegate
我的代码如下: let assetTag = Expression("asset_tag") let query2 = mdm.select(mdm[assetTag],os, mac, lastRe
我的 swift 代码如下所示 Family.arrayTuple:[(String,String)]? = [] Family.arrayTupleStorage:String? Family.ar
这是我的 JSON,当我读取 ord 和 uniq 数据时出现错误 let response2 : [String: Any] = ["Response":["status":"SUCCESS","
我想将 swift 扩展文件移动到 swift 包中。但是,将文件移动到 swift 包后,我遇到了这种错误: "Type 'NSAttributedString' has no member 'ma
使用CocoaPods,我们可以设置以下配置: pod 'SourceModel', :configurations => ['Debug'] 有什么方法可以用 Swift Package Manag
我正在 Xcode 中开发一个 swift 项目。我将其称为主要项目。我大部分都在工作。我在日期选择器、日期范围和日期数学方面遇到了麻烦,因此我开始了另一个名为 StarEndDate 的项目,其中只
这是 ObjectiveC 代码: CCSprite *progress = [CCSprite spriteWithImageNamed:@"progress.png"]; mProgressBar
我正在创建一个命令行工具,在 Xcode 中使用 Swift。我想使用一个类似于 grunt 的配置文件确实如此,但我希望它是像 Swift 包管理器的 package.swift 文件那样的快速代码
我假设这意味着使用系统上安装的任何 swift 运行脚本:#!/usr/bin/swift 如何指定脚本适用的解释器版本? 最佳答案 Cato可用于此: #!/usr/bin/env cato 1.2
代码说完全没问题,没有错误,但是当我去运行模拟器的时候,会出现这样的字样: (Swift.LazyMapCollection (_base:[ ] 我正在尝试创建一个显示报价的报价应用。 这是导入
是否可以在运行 Swift(例如 Perfect、Vapor、Kitura 等)的服务器上使用 RealmSwift 并使用它来存储数据? (我正在考虑尝试将其作为另一种解决方案的替代方案,例如 no
我刚开始学习编程,正在尝试完成 Swift 编程书中的实验。 它要求““编写一个函数,通过比较两个 Rank 值的原始值来比较它们。” enum Rank: Int { case Ace = 1 ca
在您将此问题标记为重复之前,我检查了 this question 它对我不起作用。 如何修复这个错误: error: SWIFT_VERSION '5.0' is unsupported, suppo
从 Xcode 9.3 开始,我在我的模型中使用“Swift.ImplicitlyUnwrappedOptional.some”包裹了我的字符串变量 我不知道这是怎么发生的,但它毁了我的应用程序! 我
这个问题在这里已经有了答案: How to include .swift file from other .swift file in an immediate mode? (2 个答案) 关闭 6
我正在使用 Swift Package Manager 创建一个应用程序,我需要知道构建项目的配置,即 Debug 或 Release。我试图避免使用 .xcodeproj 文件。请有人让我知道这是否
有一个带有函数定义的文件bar.swift: func bar() { println("bar") } 以及一个以立即模式运行的脚本foo.swift: #!/usr/bin/xcrun s
我是一名优秀的程序员,十分优秀!