gpt4 book ai didi

xcode - 在 Swift 2 中使用#

转载 作者:可可西里 更新时间:2023-11-01 00:08:21 24 4
gpt4 key购买 nike

嗨,我的 friend 把他客户的现有项目给了我,但它有太多错误。我一直在调试应用程序,刚好看到这行代码

class func saveFile(#data: NSData, filename: String, directory: NSSearchPathDirectory = .DocumentDirectory) -> Bool {
var file = filePath(filename, directory: directory)
return data.writeToFile(file, atomically: true)
}

注意到 # 了吗?那么#到底是什么?

这也是 # 函数的截图。

附加信息:我认为他们使用了这个库 Service Stack我认为它仅适用于 xamarin。

最佳答案

在 Swift 1 中,# 用于为函数参数提供相同的外部和内部名称。例如函数定义:

func save(#data: Float) {
print(data)
}

相当于:

func save(data data: Float) {
print(data)
}

这在 Swift 2 中被删除,外部名称必须显式声明。


外部参数名称用于使函数调用更加地道。例如:

func send(sender: String, receiver: String) {
print("Sending from \(sender) to \(receiver)")
}

是这样调用的:

send("Cupertino", "New York")

通过添加外部参数,您可以在不更改主体的情况下使该函数调用更加地道:

func send(from sender: String, to receiver: String) {
print("Sending from \(sender) to \(receiver)")
}

使代码更具可读性:

send(from: "Cupertino", to: "New York")

更多信息在 Apple docs .

关于xcode - 在 Swift 2 中使用#,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36407401/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com