无法使用Swift函数计数进行黑客攻击,没有普遍好的答案

时间:2018-08-03 15:41:56

标签: swift count

//functions swift
func countLetters(in string: String) {
    print("The string \(string) has \(string.count) letters.") 
}

countLetters(in: "Hello") 

enter image description here

我不明白为什么它说计数不可用:没有普遍好的答案,请参阅文档注释以进行讨论。

1 个答案:

答案 0 :(得分:3)

您的Swift版本可能太旧了。 count属性直到Swift 4才出现。在这种情况下,您可以说string.characters.count