swift5 - 枚举协议 - Self 和 self 以及一个变量
swift5 - enum protocol - Self and self and a variable
我喜欢将 soms 函数和 var 从枚举中分离出来,并认为这是一种方法。 (只是示例代码)
这会导致编译错误“类型 'Self' 没有成员 'allCases'”
public protocol EnumFunctions: Hashable {
static var numOfCases: Self { get }
}
public extension EnumFunctions {
static var numOfCases: Self {
return self.allCases.count
}
}
我的枚举烹饪计时器
public struct Cook_Time {
// struct naming for the dump command like
// dump(Cook_Time(), name: Cook_Time().structname)
let structname : String = "Cook_Time"
let a = "a"
let allValues = PFTime.allValues
public enum PFTime : String , CaseIterable, EnumFunctions {
case t1m = "1mim"
case t3m = "3min"
case t5m = "5min"
case t10m = "10min"
....
static let allValues = PFTimer.allCases.map { [=11=].rawValue }
}
}
我该如何解决这个问题?我对此的错误想法是什么?我确实需要 Self 而不是 self,对吗?
此外,如果我在单独的文件中为 PFTime 进行扩展,为什么会出现错误“无法在范围内找到类型 'PFTime'”?
为了访问 CaseIterable
协议的 allCases
属性,您需要将 EnumFunctions
协议更改为如下内容:
public protocol EnumFunctions: Hashable, CaseIterable {
static var numOfCases: Int { get }
}
public extension EnumFunctions {
static var numOfCases: Int {
return allCases.count
}
}
您还可以通过添加 Cook_Time.
作为前缀来创建 PFTime
的扩展,因为 PFTime
位于 Cook_Time
结构中:
extension Cook_Time.PFTime {
}
我喜欢将 soms 函数和 var 从枚举中分离出来,并认为这是一种方法。 (只是示例代码) 这会导致编译错误“类型 'Self' 没有成员 'allCases'”
public protocol EnumFunctions: Hashable {
static var numOfCases: Self { get }
}
public extension EnumFunctions {
static var numOfCases: Self {
return self.allCases.count
}
}
我的枚举烹饪计时器
public struct Cook_Time {
// struct naming for the dump command like
// dump(Cook_Time(), name: Cook_Time().structname)
let structname : String = "Cook_Time"
let a = "a"
let allValues = PFTime.allValues
public enum PFTime : String , CaseIterable, EnumFunctions {
case t1m = "1mim"
case t3m = "3min"
case t5m = "5min"
case t10m = "10min"
....
static let allValues = PFTimer.allCases.map { [=11=].rawValue }
}
}
我该如何解决这个问题?我对此的错误想法是什么?我确实需要 Self 而不是 self,对吗?
此外,如果我在单独的文件中为 PFTime 进行扩展,为什么会出现错误“无法在范围内找到类型 'PFTime'”?
为了访问 CaseIterable
协议的 allCases
属性,您需要将 EnumFunctions
协议更改为如下内容:
public protocol EnumFunctions: Hashable, CaseIterable {
static var numOfCases: Int { get }
}
public extension EnumFunctions {
static var numOfCases: Int {
return allCases.count
}
}
您还可以通过添加 Cook_Time.
作为前缀来创建 PFTime
的扩展,因为 PFTime
位于 Cook_Time
结构中:
extension Cook_Time.PFTime {
}