Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
152 views
in Technique[技术] by (71.8m points)

javascript - Delete instance of a class?

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

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

1 Reply

0 votes
by (71.8m points)

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...