首页 > 编程语言 > 详细

There is no type initializer in Swift----One answer is to use static, it is the same as class final.

时间:2019-07-22 15:15:04      阅读:71      评论:0      收藏:0      [点我收藏+]

“Unlike stored instance properties, you must always give stored type properties a default value. This is because the type itself does not have an initializer that can assign a value to a stored type property at initialization time.”

Excerpt From: Apple Inc. “The Swift Programming Language.” iBooks


You could use a type property which default value is a closure. So the code in the closure would be executed when the type property (or class variable) is set.

But class stored properties not yet supported (tested in Xcode 8).

One answer is to use static, it is the same as class final.

Good link for that is

Setting a Default Property Value with a Closure or Function

Excerpt From: Apple Inc. “The Swift Programming Language.” iBooks


Code example:

Prints

start

setting default property value with a closure

So it is lazy evaluated.

 

https://stackoverflow.com/questions/24137212/initialize-class-method-for-classes-in-swift

There is no type initializer in Swift----One answer is to use static, it is the same as class final.

原文:https://www.cnblogs.com/feng9exe/p/11225790.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!