search
HomeWeb Front-endJS TutorialHow to use JavaScript constructor?
How to use JavaScript constructor?Jun 28, 2017 am 11:48 AM
Constructor

The constructor is to initialize an instance object, and the prototype attribute of the object is to inherit an instance object. This article will share with you a detailed explanation of the JavaScript constructor. Friends who are interested in knowledge about the JS constructor should learn together.

The constructor is to initialize an instance object, and the prototype attribute of the object is to inherit an instance object.

Notes on the constructor:

1. The first letter of the default function is capitalized

2. The constructor does not return anything. The new operator automatically creates the given types and returns them. When the constructor is called, new automatically creates the this object, and the type is the constructor type.

3. You can also call return explicitly in the constructor. If the returned value is an object, it will be returned instead of the newly created object instance. If the returned value is a primitive type, it is ignored and a newly created instance is returned.


 function Person( name){
        this.name =name;
      }
       var p1=new Person('John');

is equivalent to:


   function person(name ){
        Object obj =new Object();
        obj.name =name;
         return obj;
      }
       var p1= person("John");

4. Because the constructor is also a function, it can be called directly, but Its return value is undefine. At this time, the this object in the constructor is equal to the global this object. this.name actually creates a global variable name. In strict mode, an error occurs when you call the Person constructor via new.

5. You can also use the Object.defineProperty() method in the constructor to help us initialize:


  function Person( name){
        Object.defineProperty(this, "name"{
          get :function(){
             return name;
          },
           set:function (newName){
            name =newName;
          },
          enumerable :true, //可枚举,默认为false
           configurable:true //可配置
         });
      }  
       var p1=new Person('John');

6. Use the prototype object in the constructor


 //比直接在构造函数中写的效率要高的多
       Person.prototype.sayName= function(){
         console.log(this.name);
      };

But if there are many methods, most people will adopt a simpler method: directly use an object literal form Replace the prototype object as follows:


 Person.prototype ={
        sayName :function(){
           console.log(this.name);
        },
        toString :function(){
           return "[Person "+ this.name+"]" ;
        }
      };

This method is very popular because you don’t have to type Person.prototype multiple times, but there is a side effect you must pay attention to:

The prototype object is rewritten in literal form and the properties of the constructor are changed, so it points to Object instead of Person. This is because the prototype object has a constructor property, which other object instances do not have. When a function is created, its prototype property is also created, and the constructor property of the prototype object points to the function. When the prototype object is rewritten using object literal form, its constructor property will be set to the generic object Object. In order to avoid this, you need to manually reset the constructor when rewriting the prototype object, as follows:


 Person.prototype ={
        constructor :Person,
        
        sayName :function(){
           console.log(this.name);
        },        
        toString :function(){
           return "[Person "+ this.name+"]" ;
        }
      };

Test again:

p1.constructor===Person

true

p1.constructor= ==Object

false

p1 instanceof Person

true

The above is the detailed content of How to use JavaScript constructor?. For more information, please follow other related articles on the PHP Chinese website!

Statement
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
Python中的构造函数Python中的构造函数Sep 02, 2023 pm 04:29 PM

在Python中,每个类都有一个构造函数,它是类内部指定的特殊方法。构造函数/初始化程序将在为类创建新对象时自动调用。当对象被初始化时,构造函数将值分配给类中的数据成员。没有必要显式定义构造函数。但为了创建构造函数,我们需要遵循以下规则-对于一个类,它只允许有一个构造函数。构造函数名称必须是__init__。必须使用实例属性定义构造函数(只需将self关键字指定为第一个参数)。它不能返回除None之外的任何值。语法classA():def__init__(self):pass示例考虑下面的示例并

C++语法错误:定义在类外的构造函数必须加上类名作为限定符,应该怎么改正?C++语法错误:定义在类外的构造函数必须加上类名作为限定符,应该怎么改正?Aug 22, 2023 pm 02:00 PM

C++是一种广泛使用的面向对象编程语言,C++中定义类的构造函数时,如果希望将构造函数的定义放在类外部,那么就需要在构造函数的定义中加上类名作为限定符,以指定这个构造函数是属于哪个类的。这是C++语法的一条基本规定。如果在定义类的构造函数时没有遵守这个规定,就会出现编译错误,提示“定义在类外的构造函数必须加上类名作为限定符”。那么,如果碰到这种编译错误,应该

什么是构造函数?详解JavaScript中的构造函数什么是构造函数?详解JavaScript中的构造函数Aug 04, 2022 pm 03:22 PM

作为原型和原型链的基础,先了解清楚构造函数以及它的执行过程才能更好地帮助我们学习原型和原型链的知识。本篇文章带大家详细了解一下JavaScript中的构造函数,介绍一下怎么利用构造函数创建一个js对象,希望对大家有所帮助!

go语言有构造函数吗go语言有构造函数吗Jan 10, 2023 pm 02:15 PM

go语言没有构造函数。go语言作为结构化的语言是没有面向对象语言中的构造方法的,不过可以通过一些方式实现类似的面向对象语言中构造方法的效果,也就是使用结构体初始化的过程来模拟实现构造函数。

C++报错:构造函数必须在public区域声明,怎么处理?C++报错:构造函数必须在public区域声明,怎么处理?Aug 21, 2023 pm 08:26 PM

在C++编程中,构造函数是用来初始化类的成员变量的重要函数。它在创建对象时自动调用,以确保对象的正确初始化。构造函数必须在类中声明,但是有时会遇到错误提示“构造函数必须在public区域声明”。这个错误通常是因为构造函数的访问权限修饰符错误引起的。在C++中,类的成员变量和成员函数都有一个访问权限修饰符,包括public、private和protected。

聊聊JavaScript中怎么利用Object()函数创建对象聊聊JavaScript中怎么利用Object()函数创建对象Aug 04, 2022 pm 04:32 PM

怎么利用Object()函数创建对象?下面本篇文章给大家介绍一下Object()构造函数创建对象的方法(附其他三种创建对象的方法),希望对大家有所帮助!

es6构造函数只能有一个吗es6构造函数只能有一个吗Oct 18, 2022 pm 03:04 PM

对,每个类只能有一个构造函数,如果包含多个构造函数,那么会抛出异常。构造函数是一种特殊的函数,主要用来初始化对象,即为对象成员变量赋初始值;使用构造函数时要注意两点:1、构造函数用于创建某一类对象,其首字母要大写;2、构造函数要和new一起使用才有意义。

C++语法错误:相同的构造函数签名出现多次,应该怎么解决?C++语法错误:相同的构造函数签名出现多次,应该怎么解决?Aug 22, 2023 pm 04:49 PM

C++是一门强大的编程语言,但是在使用过程中,难免会遇到各种问题。其中,相同的构造函数签名出现多次就是一种常见的语法错误。本文将介绍这种错误的原因和解决方法。一、错误原因在C++中,构造函数用于创建对象时初始化对象的数据成员。但是,如果在同一个类中定义了相同的构造函数签名(即参数类型和顺序相同),编译器就无法确定要调用哪一个构造函数,从而引起编译错误。例如,

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!