Home > Web Front-end > JS Tutorial > body text

When to Avoid Immediate Instantiation of Anonymous Classes?

Barbara Streisand
Release: 2024-10-20 12:05:02
Original
460 people have browsed it

When to Avoid Immediate Instantiation of Anonymous Classes?

Immediate Instantiation of Anonymous Classes: A Cautionary Tale

In ES6, it's possible to define anonymous classes and instantiate them immediately. While this syntax may seem appealing at first, it's crucial to understand its pitfalls and why it should generally be avoided.

To instantiate an anonymous class directly, we use the following syntax:

var entity = new class {
    constructor(name) { this.name = name; }
    getName() { return this.name; }
}('Foo');
Copy after login

Behind the scenes, this results in the creation of a new constructor function and a prototype object for each instantiation. This means that multiple objects created using this method will not share any benefits from class inheritance or prototypal relationships.

Furthermore, this approach undermines attempts to create singleton objects using anonymous classes. The constructor function can still be accessed and utilized to create additional instances, negating the intended singleton behavior.

In light of these caveats, it's strongly recommended to avoid using immediately instantiated anonymous classes. Simpler object literals offer a more efficient and straightforward alternative:

var entity = {
    name: 'Foo',
    getName() { return this.name; }
};
Copy after login

The above is the detailed content of When to Avoid Immediate Instantiation of Anonymous Classes?. For more information, please follow other related articles on the PHP Chinese website!

source:php
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!