Swift - 协议(protocol)

前端之家收集整理的这篇文章主要介绍了Swift - 协议(protocol)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
1,Swift中协议类似于别的语言里的接口,协议里只做方法的声明,包括方法名、返回值、参数等信息,而没有具体的方法实现。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
protocol Person {
//读写属性
var name: String { get set }
//只读属性
age: Int get }
//类型方法
static func method1()
//实例方法
method2() -> Int
//突变方法
mutating method3()
}

2,协议可以继承另一个协议
16
17
Animal move()
Bird : {
song()
}
class Chiken {
song(){
print ( "母鸡咯咯" )
}
move(){
"母鸡走" )
}
3,如果某个类集继承了某个父类,又遵循了某个协议,那么冒号后面应该先写父类,再写协议
2
CC :继承的父类,协议1,协议2{
原文出自: www.hangge.com 转载请保留原文链接 http://www.hangge.com/blog/cache/detail_526.html 原文链接:https://www.f2er.com/swift/324919.html

猜你在找的Swift相关文章