是否可以使用允许rawValue属于某种类型的任何枚举的函数?例如,任何具有字符串rawValue的枚举。
答案 0 :(得分:7)
这可以使用泛型和“where”关键字
来完成enum EnumString: String {
case A = "test"
}
func printEnum<T: RawRepresentable where T.RawValue == String>(arg: T) {
print(arg.rawValue)
}
printEnum(EnumString.A) //Prints "test"
答案 1 :(得分:1)
您可以声明符合类型RawRepresentable
的泛型,这是一个声明原始rawValue符合的所有枚举的协议。
enum EnumA: Int {
case A = 0
}
enum EnumB {
case A
}
func doGenericSomething<T: RawRepresentable>(arg: T) {
println(arg.rawValue)
}
doGenericSomething(EnumA.A) //OK
doGenericSomething(EnumB.A) //Error! Does not conform to protocol RawRepresentable
但是,您不能在泛型中指定枚举的rawValue类型。有关信息,您可以看到帖子here。