如何修改在字符串插值中显示的文本输出?
可打印协议看起来最明显,但它在字符串插值和打印实例时被忽略,例如:
struct Point : Printable { var x = 0 var y = 0 var description : String { return "(\(x),\(y))" } func toString() -> String { return description } }
同样,toString()约定也不起作用:
var p = Point(x: 10,y: 20) println(p) // V11lldb_expr_05Point (has 2 children) println("\(p)") // V11lldb_expr_05Point (has 2 children) println(p.description) // (10,20) println("\(p.description)") // (10,20)
在PlayGround中的行为也不同,它使用它自己的String表示结构,即:
p // {x 10,y 20}
Swift 2& 3
原文链接:https://www.f2er.com/swift/321396.html在Swift 2中,Printable变成了CustomStringConvertible。例如,您可以创建一些结构体:
struct Animal : CustomStringConvertible { let type : String var description: String { return type } } struct Farm : CustomStringConvertible { let name : String let animals : [Animal] var description: String { return "\(name) is a \(self.dynamicType) with \(animals.count) animal(s)." } }
如果您初始化它们:
let oldMajor = Animal(type: "Pig") let Boxer = Animal(type: "Horse") let muriel = Animal(type: "Goat") let orwellsFarm = Farm(name: "Animal Farm",animals: [oldMajor,Boxer,muriel])
另请参见CustomDebugStringConvertible,您可以在调试期间使用它进行更详细的输出。
用法注意
您可以从任何类型初始化字符串,而不实现此协议。例如:
为此,文件说:
Using
CustomStringConvertible
as a generic constraint,or accessing a conforming type’sdescription
directly,is therefore discouraged.