我正在研究
Swift教程,发现
Swift有一种奇怪的方式来处理多行语句.
首先,我定义了标准String类的一些扩展:
extension String { func replace(target: String,withString: String) -> String { return self.stringByReplacingOccurrencesOfString(target,withString: withString) } func toLowercase() -> String { return self.lowercaseString } }
这按预期工作:
let str = "HELLO WORLD" let s1 = str.lowercaseString.replace("hello",withString: "goodbye") // -> goodbye world
这不起作用:
let s2 = str .lowercaseString .replace("hello",withString: "goodbye") // Error: Could not find member 'lowercaseString'
如果我用函数调用替换对lowercaseString属性的引用,它再次起作用:
let s3 = str .toLowercase() .replace("hello",withString: "goodbye") // -> goodbye world