枚举中的CustomStringConvertible

时间:2017-07-23 04:38:40

标签: swift3 enums customstringconvertible

我在课堂上关注了enum。

enum Attributes: String, CustomStringConvertible {
    case eventDate
    case eventName
    case eventType
    case country

    var description: String {
        return self.rawValue
    }
}

当我尝试使用以下代码时,编译器会抱怨以下错误。

var attributesList: [String] {
    return [
        Attributes.eventDate, //<-- Compiler error on this row
        Attributes.eventName,
        Attributes.eventType,
        Attributes.country]
}
  

无法将“属性”类型的值转换为预期的元素类型“字符串”

“CustomStringConvertible”协议不应该返回“描述”吗? 上面的代码有什么问题?

1 个答案:

答案 0 :(得分:2)

TL; DR - 它不起作用,因为Attribute的数组无法分配给String的数组,它们都是不匹配的类型,并且Swift不会在类型之间进行自动转换,并且需要指定明确的转换。

在Swift中,当您使用数组文字初始化数组时,会发生以下情况:

let words = ["hello", "world"]
  • 编译器识别出正在将数组文字分配给名为words的变量。由于我们没有指定words的类型,因此隐式地假设了一个数组。数组底层元素的类型是根据数组文字的内容确定的。
  • 在这种情况下,数组文字是String类型的集合;这很容易被编译器理解
  • 由于LHS类型是一个数组,因此RHS结构是一个数组文字,因为LHS类型(Array)符合一个名为ExpressibleByArrayLiteral的预定义协议,该协议具有关联的类型约束为匹配Element,编译器实际上将我们的行转换为以下

示例:

let words = [String].init(arrayLiteral: ["hello", "world"]) // we do not call this init directly

这是使用数组文字进行初始化的方法。在上面的示例中,由于我们没有指定数组的类型,因此隐式类型设置将起作用。如果我们指定了不匹配的类型,则赋值将失败,因为ExpressibleByArrayLiteral需要数组文字的关联Element类型以及您要分配的实际数组才能匹配。

所以以下失败:

let words:[String] = [1, 2] // array literal has Element=Int, array has Element=String

这也表明IntString之间没有隐式类型转换,即使Int符合CustomStringConvertible

在您的情况下,您尝试将包含Attributes的数组文字分配给String数组。这是一种类型不匹配。这就是它失败的原因。

如果您声明协议一致性,则以下行将起作用:

var attributesList: [CustomStringConvertible] {
    return [
        Attributes.eventDate,
        Attributes.eventName,
        Attributes.eventType,
        Attributes.country
    ]
}
// note that we have an array of CustomStringConvertible protocol,
// each element here is still of Attributes type
// a type conforming to a protocol can be cast to an instance
// of that protocol automatically
// The above initialisation works simply because the following
// also works without any further action required
// let a:CustomStringConvertible = Attributes.country

如果你真的想要一个字符串值列表,你需要明确地将它映射到一个字符串:

var attributesList1: [String] {
    return [
        Attributes.eventDate,
        Attributes.eventName,
        Attributes.eventType,
        Attributes.country
        ].map { $0.description }
}

var attributesList2: [String] {
    return [
        Attributes.eventDate.description,
        Attributes.eventName.description,
        Attributes.eventType.description,
        Attributes.country.description
        ]
}