search
HomeWeb Front-endJS TutorialIntroduction to JavaScript Design Patterns and Prototype Patterns (Object.create and prototype)_javascript skills

Prototype Mode Description

Description: Use prototype instances to copy and create new customizable objects; for new objects, you do not need to know the specific process of creating the original object;

Process: Prototype => new ProtoExam => clone to new Object;

Use relevant code:

Copy code The code is as follows:

function Prototype() {
This.name = '';
This.age = '';
This.sex = '';
}

Prototype.prototype.userInfo = function() {
Return 'Personal information, name: ' this.name ', age: ' this.age ', gender: ' this.sex '
';
}

Two or more personal information contents are now required:


Copy code The code is as follows:

var proto = new Prototype();
var person1 = Object.create(proto);
person1.name = 'Xiao Ming';
person1.sex = 'Male';
person1.age = 35;
person1.userInfo();
//
var person2 = Object.create(proto);
person2.name = 'Xiaohua';
person2.sex = 'Female';
person2.age = 33;
person2.userInfo();

Output return:


Copy code The code is as follows:

Personal information, Name: Xiao Ming, Age: 35, Gender: Male
Personal information, Name: Xiaohua, Age: 33, Gender: Female


Prototype mode is generally used when the abstract structure is complex, but the content composition is similar, the abstract content can be customized, and the newly created object only needs to be slightly modified to meet the requirements;

Object.create Instructions

1>. Definition: Create an object that can specify a prototype object and can contain optional custom properties;
2> Object.create(proto [, properties]); Optional, used to configure the properties of the new object;

Copy code The code is as follows:

1. proto: To create a prototype of a new object, it is required and can be null; this proto is only valuable if it has already been created [new] or object.prototype;
2. properties: optional, structure:
{
​​ propField: {
              value: 'val'|{}|function(){},
writable: true|false,
enumerable: true|false,
Configurable: true|false,
              get:function(){return 10},
             set:function(value){}
}
}
Custom attributes have the following four native attributes:
value: custom attribute value;
writable: Whether the value of this item is editable, the default is false, when it is true, obj.prodField can be assigned a value; otherwise it is read-only;
enumerable: enumerable;
confirurable: configurable;

Can also contain set, get accessor methods;

Among them, [set, get] and value and writable cannot appear at the same time;

1. Create prototype object class:

Copy code The code is as follows:

function ProtoClass(){
This.a = 'ProtoClass';
This.c = {};
This.b = function() {
}
}

Create prototype method:
Copy code The code is as follows:

ProtoClass.prototype.aMethod = function() {
//this.a;
//this.b();
Return this.a;
}

How to use

1. Create an object with ProtoClass.prototype;

Copy code The code is as follows:

var obj1 = Object.create(ProtoClass.prototype, {
foo:{value: 'obj1', writable: true}
})

obj1 has the ProtoClass prototype method aMethod;
Copy code The code is as follows:

obj1.aMethod();
//It will output undefined, the method is accessible, and the ProtoClass members are inaccessible

However, this method cannot implement the member attributes of a, b, c under ProtoClass:

2. Use instantiated ProtoClass as prototype:

Copy code The code is as follows:

var proto = new ProtoClass();

var obj2 = Object.create(proto, {
foo:{value:'obj2'}
});


The obj2 created in this way has all the member attributes a, b, c and aMethod prototype method of ProtoClass; and adds a foo read-only data attribute;
Copy code The code is as follows:

obj2.a; //ProtoClass
obj2.c: //[Object]
obj2.b(); //

obj2.aMethod(); //ProtoClass
obj2.foo; //obj2

3. Subclass inheritance:

Copy code The code is as follows:

function SubClass() {
 
}
SubClass.prototype = Object.create(ProtoClass.prototype ,{
foo:{value: 'subclass'}
});

SubClass.prototype.subMethod = function() {
Return this.a || this.foo;
}

This method can be inherited to the aMethod method of ProtoClass and executed;

Copy code The code is as follows:

var func = new SubClass();
func.aMethod() ;//undefined, cannot read the member attributes of ProtoClass, a, b, c
func.subMethod();//subclass

To allow SubClass to read the member attributes of ProtoClass, SubClass needs to be changed:

Copy code The code is as follows:

function SubClass()
{
ProtoClass.call(this);
}

//Other codes;

This method can obtain the member attributes and prototype methods of ProtoClass;:

Copy code The code is as follows:

var func = new SubClass();
func.aMethod() ;//ProtoClass
func.subMethod();//ProtoClass

Another method is to use an instantiated ProtoClass object as the prototype of SubClass;

Copy code The code is as follows:

var proto = new ProtoClass();

function SubClass() {
}

SubClass.prototype = Object.create(proto, {
foo:{value: 'subclass'}
});

In this way, after SubClass is instantiated, you can obtain all the properties and prototype methods of ProtoClass, and create a read-only data attribute foo;

Copy code The code is as follows:

var func = new SubClass();
func.foo; //subclass
func.a; //ProtoClass
func.b(); //
func.c; //[Object]
func.aMethod(); //ProtoClass

4. Another creation inheritance method has the same effect as Object.create using instantiated ProtoClass as prototype:

Copy code The code is as follows:

function SubClass() {
​this.foo = 'subclass'; //But it can be read and written here
}

SubClass.prototype = new ProtoClass();

Object.create related instructions

Object.create is used to create a new object. When it is Object, the prototype is null, and the function is the same as new Object(); or {};

When it is a function, it has the same effect as new FunctionName;

Copy code The code is as follows:

//1 Object
var o = {}
//Equivalent to
var o2 = Object.create({});
//Both constructors are the same;

//----------------------------------------
function func() {
This.a = 'func';
}
func.prototype.method = function() {
Return this.a;
}

var newfunc = new func();
//Equivalent to [same effect]
var newfunc2 = Object.create(Object.prototype/*Function.prototype||function(){}*/, {
a: {value:'func', writable:true},
Method: {value: function() {return this.a;} }
});

But newfunc and newfunc2 have different function references in the objects that create them.

newfunc is function func() {...}, newfunc2 is function Function {Native}

Copy code The code is as follows:

Object.create(proto[, propertiesField]):

proto description, this value is required and can be null. If not set, an exception will be thrown;

If proto is non-null, it is an instantiated value, that is, a value that has been new; most objects in JavaScript have a constructor attribute, which indicates which function this object is instantiated through;

propertiesField is optional and sets the member properties or methods that the newly created object may need;

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
es6数组怎么去掉重复并且重新排序es6数组怎么去掉重复并且重新排序May 05, 2022 pm 07:08 PM

去掉重复并排序的方法:1、使用“Array.from(new Set(arr))”或者“[…new Set(arr)]”语句,去掉数组中的重复元素,返回去重后的新数组;2、利用sort()对去重数组进行排序,语法“去重数组.sort()”。

JavaScript的Symbol类型、隐藏属性及全局注册表详解JavaScript的Symbol类型、隐藏属性及全局注册表详解Jun 02, 2022 am 11:50 AM

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于Symbol类型、隐藏属性及全局注册表的相关问题,包括了Symbol类型的描述、Symbol不会隐式转字符串等问题,下面一起来看一下,希望对大家有帮助。

原来利用纯CSS也能实现文字轮播与图片轮播!原来利用纯CSS也能实现文字轮播与图片轮播!Jun 10, 2022 pm 01:00 PM

怎么制作文字轮播与图片轮播?大家第一想到的是不是利用js,其实利用纯CSS也能实现文字轮播与图片轮播,下面来看看实现方法,希望对大家有所帮助!

JavaScript对象的构造函数和new操作符(实例详解)JavaScript对象的构造函数和new操作符(实例详解)May 10, 2022 pm 06:16 PM

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于对象的构造函数和new操作符,构造函数是所有对象的成员方法中,最早被调用的那个,下面一起来看一下吧,希望对大家有帮助。

JavaScript面向对象详细解析之属性描述符JavaScript面向对象详细解析之属性描述符May 27, 2022 pm 05:29 PM

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于面向对象的相关问题,包括了属性描述符、数据描述符、存取描述符等等内容,下面一起来看一下,希望对大家有帮助。

javascript怎么移除元素点击事件javascript怎么移除元素点击事件Apr 11, 2022 pm 04:51 PM

方法:1、利用“点击元素对象.unbind("click");”方法,该方法可以移除被选元素的事件处理程序;2、利用“点击元素对象.off("click");”方法,该方法可以移除通过on()方法添加的事件处理程序。

整理总结JavaScript常见的BOM操作整理总结JavaScript常见的BOM操作Jun 01, 2022 am 11:43 AM

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于BOM操作的相关问题,包括了window对象的常见事件、JavaScript执行机制等等相关内容,下面一起来看一下,希望对大家有帮助。

foreach是es6里的吗foreach是es6里的吗May 05, 2022 pm 05:59 PM

foreach不是es6的方法。foreach是es3中一个遍历数组的方法,可以调用数组的每个元素,并将元素传给回调函数进行处理,语法“array.forEach(function(当前元素,索引,数组){...})”;该方法不处理空数组。

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

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

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