class Person { constructor(name, age) { this.name = name; this.age = age; } sayHello() { console.log(`Hello, my name is ${this.name} and I'm ${this.age} years old.`); } }
我可以建立實例,例如 person = new Person('Alice', 30);
但在我的情況下,我需要建立許多實例,它們將完成自己的工作並被刪除,但我希望在它們的工作完成後重複使用該實例。
我知道沒有像 this.resetInstance()
這樣的 API,但是否有任何方法可以實現這一點?
大多數情況下,這並不值得努力。但是,如果你想做的話,這裡是程式碼: