参数名称前可以自定义参数标签,或者使用 _表示不使用参数标签。
func greet(_ person: String, on day: String) -> String {
return "Hello \(person), today is \(day)."
}
greet("John", on: "Wednesday")
func greet(_ person: String, on day: String) -> String {
return "Hello \(person), today is \(day)."
}
greet("John", on: "Wednesday")
本文标题:Swift 禁止使用的语法
本文链接:https://www.haomeiwen.com/subject/nfyauttx.html
网友评论