我只是注意到Swift结构的静态成员是隐式的.
例如,这只会调用init一次:
class Baz { init(){ print("initializing a Baz") } } struct Foo { static let bar = Baz() } var z = Foo.bar z = Foo.bar
这背后的理由是什么?
如果我想要相反的行为怎么办?
static属性定义了一个“type属性”,一个只实例化一次的类型属性.正如你所注意到的,这种情况很懒散,因为静态就像全局变量一样.正如
The Swift Programming Language: Properties所说:
原文链接:https://www.f2er.com/swift/320251.htmlGlobal constants and variables are always computed lazily,in a similar manner to 07001. Unlike lazy stored properties,global constants and variables do not need to be marked with the
lazy
modifier.
这种隐含的懒惰行为是因为,正如Swift Blog: Files and Initialization所说:
it allows custom initializers,startup time in Swift scales cleanly with no global initializers to slow it down,and the order of execution is completely predictable.
他们有意识地设计它以避免不必要地延迟应用程序的启动.
如果要在应用程序的某个特定点实例化静态属性(而不是将其推迟到首次使用的位置),只需在该较早的点引用此静态属性,此时将初始化该对象.鉴于我们在减少启动应用程序的延迟方面所付出的努力,您通常不会在应用程序的初始启动期间同步,但您可以随时随地执行此操作.