Are there reserved keywords for destructors in Swift?
deinit
(Deinitialization)处理在对象释放之前应该进行的清理.
Is there even a need for such a thing in this language?
在deinit中做了一些标准的事情.删除观察者,同步对象的状态,并编写跟踪消息以进行调试.其他的事情是可能的,只是避免长时间运行的代码块.
Are there reserved keywords for destructors in Swift?
deinit
(Deinitialization)处理在对象释放之前应该进行的清理.
Is there even a need for such a thing in this language?
在deinit中做了一些标准的事情.删除观察者,同步对象的状态,并编写跟踪消息以进行调试.其他的事情是可能的,只是避免长时间运行的代码块.