Summary of various ways to create objects in js and their advantages and disadvantages

Summary of various ways to create objects in js and their advantages and disadvantages

Early creation method

var obj = new Object()
obj.name = 'xxx'
obj.age = 18
Or use object literal var o1 = {
  name: 'xxx',
  say: () => {}
}
var o2 = {
  name: 'xxx',
  say: () => {}
}

Disadvantages: Using the same interface to create many objects will generate a lot of duplicate code

Factory Pattern

function factory(name,age) {
  var obj = new Object()
  obj.name = name
  obj.age = age
  return obj
}
var o1 = factory(1, 11)
var o2 = factory(2, 22)

Advantages: Solve the code duplication problem of creating multiple similar objects Disadvantages: Unable to identify what type of object

Constructor Pattern

Constructors can be used in ECMAScript to create objects of specific types, such as native constructors such as Object and Array. In addition, you can create custom constructors to define properties and methods of custom objects.

function Person(name, age) {
  this.name = name
  this.age = age
  this.sayName = function() {
    console.log(this.name)
  }
}
var o1 = new Person(1,11)
var o2 = new Person(2,22)
o1.sayName() // 1
o2.sayName() // 2

Advantages: Instances created by the constructor mode can distinguish type identifiers (instanceof judgment)
Disadvantages: Each method needs to be recreated on the instance. For example, the sayName method of two instances has the same task, but actually creates two Function instances.

Constructor pattern optimization

function Person(name, age) {
  this.name = name
  this.age = age
}
function sayName () {
  console.log(this.name)
}
var o1 = new Person(1,11)
var o2 = new Person(2,22)
o1.sayName() // 1
o2.sayName() // 2

Advantages: Multiple instances share functions defined in the global scope, solving the problem of two functions doing the same thing. Disadvantages: Functions defined in the global scope can actually only be called by a certain object, the global scope name is not worthy of its name, and if an object needs to define many methods, many global functions need to be created, which makes the custom object type have no encapsulation characteristics.

Prototype Pattern

Each function we create has a prototype property, which is a pointer to an object. The purpose of this object is to contain properties and methods that can be shared by all instances of a particular type. That is, prototype is the prototype object of the object instance created by the constructor.

function Person(){}
Person.prototype.name = '123'
Person.prototype.age = 18
Person.prototype.sayName = function() {
  console.log(this.name)
}
var o1 = new Person(1,11)
var o2 = new Person(2,22)
o1.sayName() // 123
o2.sayName() // 123

Advantages: Solve the problem of instance sharing properties or events. Disadvantages: Because instances share properties, for properties whose values ​​are reference types, modifications to one instance will cause changes to the values ​​accessed by other instances. like:

function Person(){}
Person.prototype.name = '123'
Person.prototype.age = 18
Person.prototype.friends = ['a', 'b']
Person.prototype.sayName = function() {
  console.log(this.name)
}
var o1 = new Person(1,11)
var o2 = new Person(2,22)
o1.friends.push('c')
console.log(o2.friends) // ['a', 'b', 'c']

Combination of Constructor and Prototype Patterns

function Person(name, age) {
  this.name = name
  this.age = age
  this.friends = ['a']
}
Person.prototype = {
  constructor: Person,
  sayName: function() {
    console.log(this.name)
  }
}
var o1 = new Person(1,11)
var o2 = new Person(2,22)
o1.sayName() // 1
o2.sayName() // 2

Advantages: Each instance has its own properties, and at the same time shares the method reference, and also supports parameter passing

Dynamic Prototype Pattern

function Person(name, age) {
  this.name = name
  this.age = age
  this.friends = ['a']
  if(typeof this.sayName != 'function') {
    Person.prototype.sayName = function() {
      console.log(this.name)
    }
  }
}
var o1 = new Person(1,11)
var o2 = new Person(2,22)
o1.sayName() // 1
o2.sayName() // 2

Advantages: Create only once when the method does not exist, avoiding repeated creation

Parasitic Constructor Pattern

function SpecialArray() {
  var o = new Array()
  // Add value o.push.apply(o, arguments)
  // Add method o.toPipedString = function(){
    return this.join('|')
  }
  return o
}
var o1 = new SpecialArray(1,11)
o1.toPipedString() // 1|11

Advantages: Add special methods to an object without changing the original constructor Disadvantages: The returned object has no relationship with the constructor and the constructor's prototype, the method is no different from an object created outside the constructor

Safe Constructor Pattern

function Person(name) {
  var o = new Object()
  // Add method o.getName = function(){
    return name
  }
  return o
}
var o1 = new Person(1)
o1.getName() // 1

Unlike parasitic constructors, this and new calls are not used. Advantages: There is no way to access name except getName, so it can be used in some safe environments. Disadvantages: Similar to the factory pattern, it is impossible to identify the type of the object.

The above is the detailed content of the various ways to create objects in js and the summary of their advantages and disadvantages. For more information about creating objects in js, please pay attention to other related articles on 123WORDPRESS.COM!

You may also be interested in:
  • Detailed explanation of several ways to create objects and object methods in js
  • Summary of JavaScript object-oriented object creation method
  • How to create functions and objects in JS
  • Summary of JavaScript object creation methods [factory pattern, constructor pattern, prototype pattern, etc.]
  • Summary of common ways to create objects in JavaScript
  • Summary of common ways to create custom objects in JavaScript
  • A comprehensive summary of seven ways to create objects in JavaScript
  • Analysis of common methods and principles of creating JS objects
  • Seven ways to create objects in JavaScript (recommended)
  • Four ways to create objects in JS

<<:  MySQL 5.7.18 binary package installation tutorial under Linux (without default configuration file my_default.cnf)

>>:  Using Docker Enterprise Edition to build your own private registry server

Recommend

Native JS to achieve drag photo wall

This article shares with you a draggable photo wa...

Summary of Problems in Installing MySQL 5.7.19 under Linux

The first time I installed MySQL on my virtual ma...

How to install Solr 8.6.2 in Docker and configure the Chinese word segmenter

1. Environment version Docker version 19.03.12 ce...

MySQL configuration master-slave server (one master and multiple slaves)

Table of contents Ideas Host Configuration Modify...

Create an SSL certificate that can be used in nginx and IIS

Table of contents Creating an SSL Certificate 1. ...

JavaScript Closures Explained

Table of contents 1. What is a closure? 2. The ro...

Table related arrangement and Javascript operation table, tr, td

Table property settings that work well: Copy code ...

Docker+nacos+seata1.3.0 installation and usage configuration tutorial

I spent a day on it before this. Although Seata i...

Linux file/directory permissions and ownership management

1. Overview of file permissions and ownership 1. ...

jQuery simulates picker to achieve sliding selection effect

This article shares the specific code of jQuery t...

MySql multi-condition query statement with OR keyword

The previous article introduced the MySql multi-c...