type" string"不符合协议"序列"

时间:2016-12-23 00:28:53

标签: swift string sequence

当我尝试打印字符串a中的每个字符时,为什么会出现这种情况?

import Foundation


let a = "what is this"
for b in a {
    print(b)
}

enter image description here

2 个答案:

答案 0 :(得分:4)

String不是序列,您需要调用characters属性才能获得sequence

let a = "what is this"
for b in a.characters {
  print(b, terminator: "")
}

// "what is this"

答案 1 :(得分:1)

如果需要,您必须使用characters String成员变量 列举所有的人物。

let a = "what is this"
for b in a.characters 
{
   print(b)
}