Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Deinit method is never called - Swift playground

In the next code I'm trying to call the deinit method releasing all the references to the Person Class instance Mark but the deinit is never called. Why?

class Person{

    let name:String

    init(name:String){
        self.name = name
        println("Person created")
    }

    deinit {

        println("Person \(name) deinit")
    }
}

var Mark:Person? = Person(name:"Mark")
Mark = nil // Shouldn't the person deinit method be called here? It doesn't.
like image 853
MatterGoal Avatar asked Jun 23 '14 10:06

MatterGoal


2 Answers

Xcode's Playgrounds for Swift don't work like regular apps; they aren't being run just once. The objects created stay in memory and can be inspected until you change the code, at which point the whole playground is reevaluated. When this happens, all previous results are discarded and while all object will be deallocated, you won't see any output from that.

Your code is correct, but Playgrounds is not suited to test things related to memory management.

Here's a related SO question: Memory leaks in the swift playground / deinit{} not called consistently

like image 56
Andreas Ley Avatar answered Oct 19 '22 01:10

Andreas Ley


Deinit will called if create object like this

_ = Person(name:"Mark")
like image 31
Pardeep Bishnoi Avatar answered Oct 19 '22 01:10

Pardeep Bishnoi