Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I have a class that was created like this:

function T() {
    this.run = function() {
        if (typeof this.i === 'undefined')
            this.i = 0;
        if (this.i > 10) {
            // Destroy this instance
        }
        else {
            var t = this;
            this.i++;
            setTimeout( function() {
                t.run();
            }, 1000);
        }
    }
}

Then I initialize it like var x = new T();

I'm not sure how to destroy this instance from within itself once if reaches 10 iterations.

Also, I'm not sure how to destroy it externally either, in case I want to stop it before it reaches 10.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
150 views
Welcome To Ask or Share your Answers For Others

1 Answer

To delete an instance, in JavaScript, you remove all references pointing to it, so that the garbage collector can reclaim it.

This means you must know the variables holding those references.

If you just assigned it to the variable x, you may do

x = null;

or

x = undefined;

or

delete window.x;

but the last one, as precised by Ian, can only work if you defined x as an explicit property of window.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...