SwiftでInitとDeinit
クラスの初期化については、インスタンス化する際に、init()
がコールされるので初期化処理を記述することができる。クラスの後始末処理については、deinit
に処理を記述できるが、ARC(Automatic Reference Counting)
によって自動的に呼ばれるために、プログラマが意図的にコールすることはできない。
とりあえずこんなメソッドもあるということで覚え書き。あまり使わないと思うが。
class MyDeclaration{
init(){
NSLog("Init!!")
}
deinit{
NSLog("Deinit!!")
}
}
var myClass:MyDeclaration = MyDeclaration()
余談だが、init()
にはカッコ()が付き、deinit
にはカッコ()が付かない理由は、よくわからない。
Author And Source
この問題について(SwiftでInitとDeinit), 我々は、より多くの情報をここで見つけました https://qiita.com/tajihiro/items/2cd1172976480b3e02cc著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .