本文介绍了带`的Swift变量名(反引号)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在浏览Alamofire源,并在
I was browsing Alamofire sources and found variable which name is backtick escaped in this source file
open static let `default`: SessionManager = {
let configuration = URLSessionConfiguration.default
configuration.httpAdditionalHeaders = SessionManager.defaultHTTPHeaders
return SessionManager(configuration: configuration)
}()
但是在使用变量的地方没有反引号。反引号的目的是什么?
However in places where variable is used there are no backticks. What's the purpose of backticks?
推荐答案
根据:
在您的示例中,默认值
是一个快速的保留关键字,这就是为什么需要反引号的原因。
In your example, default
is a swift reserved keyword, that's why backticks are needed.
这篇关于带`的Swift变量名(反引号)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!