Home Web Front-end JS Tutorial How to create objects in JavaScript_javascript skills

How to create objects in JavaScript_javascript skills

May 16, 2016 pm 05:24 PM
javascript Create object

What is an object?
From the definition of JavaScript, an object is a collection of unordered properties, and its properties can contain basic values, objects or functions. That is to say, an object is a set of attributes in no particular order. Each attribute is mapped to a value, which is a set of key-value pairs. The value can be data or an object.

The simplest object
A pair of curly brackets {} in JavaScript can define an object. This writing method is actually the same as calling the constructor of Object

Copy code The code is as follows:

var obj={};
var obj2= new Object();

The object constructed in this way only contains a pointer to the prototype of the Object. You can use some valueOf, hasQwnProperty and other methods, which have little practical effect. Custom objects always have some custom properties and methods.

Copy code The code is as follows:

var obj={};
                                                                                                                          =0; a:0,
fn:function( ){
                    alert(this);

You can add properties and methods to it through "." after defining the object, or you can use the literal assignment method to add properties and methods to it when defining the object. The object created in this way has the same methods as Attributes can directly use object references, similar to static variables and static functions of classes. There is an obvious flaw in creating objects in this way - it is very laborious to define a large number of objects, and it is necessary to write almost repetitive code over and over again.


Abstract it

Since it is repeated code, it can be abstracted, use functions to do these repeated tasks, and call a method specifically created when creating an object. For different attribute values, only You just need to pass in different parameters.


Copy code

The code is as follows:

function createObj(a,fn){

            obj={};

obj.a=a; obj.fn=fn; return obj; }        var obj=createObj(2,function(){              alert(this.a);

In this way, when creating a large number of objects, you can do some repetitive work by calling this method. This method is not perfect, because in many cases it is necessary to determine the type of the object. The objects created by the above code are the most The original Object object instance only extends some properties and methods.

Style

It’s time for function to appear again. In JavaScript, function is an object. When creating an object, you can discard the above createObj method and directly use function as an object. How to achieve reuse? This lies in the special nature of function as an object. Sex.

1. Function can accept parameters and can create objects of the same type and different values ​​based on the parameters

2. When function is used as a constructor (called through the new operator), it will return an object. Some basic knowledge of constructors is mentioned in jQuery of the poor and lower-middle-class peasant version. Simply copy it

The return value of the constructor is divided into two situations. When the function has no return statement or returns a basic type (bool, int, string, undefined, null), it returns an anonymous object created by new, which is It is a function instance; if the function body returns a reference type object (Array, Function, Object, etc.), the object will overwrite the anonymous object created by new as the return value.

3. So how to use function to solve the type identification problem? Each function instance object will have a constructor attribute (not "has", but can correspond). This attribute can indicate who constructs it, or it can Use the instanceof operator to determine whether the object is an instance of XXX.

Don’t just talk without practicing, code

Copy code The code is as follows:

function Person(name){
this.name =name;
this.fn=function(){
alert(this.name);
}
}

      var person1=new Person('Byron');

console.log(person1.constructor==Person);//true
console.log(person1 instanceof Person); //true

This would be perfect, no! Although the constructor can be object-specific, the methods must be repeated in every instance of the object!

Copy code The code is as follows:

function Person(name){
this.name =name;
this.fn=function(){
alert(this.name);
}
}

      var person1=new Person('Byron');
var person2=new Person('Frank');

console.log(person1.fn==person2.fn);//false

Look, although the fn of the two instances are exactly the same, they are not the same thing. If a function object has a thousand methods, then each of its instances must contain copies of these methods, which is very frustrating. The memory is speechless.

No more nonsense

Is there a nearly perfect way to construct an object that does not require repeated work, is stylish, and does not require the repetition of common methods of objects? ? In fact, we can find that using function is already close to the requirements. There is only one difference - a container shared by all instances of function objects is needed. In this container, instances need to share attributes and methods. It just so happens that this container is ready - —prototype, students who don’t know prototype can take a look at JavaScript prototype

Copy code The code is as follows:

function Person(name){
this.name=name;
}

Person.prototype.share=[];

Person. prototype. printName=function(){
                                                                    ; ;

console.log(person1.printName==person2.printName);//true



In this way, each Person instance has its own attribute name, as well as the attribute share and method printName shared by all instances. The basic problems are solved. For general object processing, you can always create this stylish and loving way. Object mode.
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

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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to solve the problem that activex components cannot create objects How to solve the problem that activex components cannot create objects Jan 24, 2024 pm 02:48 PM

Solution: 1. Check spelling and path; 2. Add reference to component; 3. Check registry; 4. Run as administrator; 5. Update or repair Office; 6. Check security software; 7. Use other versions Components; 8. View error messages; 9. Find other solutions. Detailed introduction: 1. Check spelling and path: Make sure there are no spelling errors in the name and path of the object, and the file does exist in the specified path; 2. Add references to components, etc.

How to implement an online speech recognition system using WebSocket and JavaScript How to implement an online speech recognition system using WebSocket and JavaScript Dec 17, 2023 pm 02:54 PM

How to use WebSocket and JavaScript to implement an online speech recognition system Introduction: With the continuous development of technology, speech recognition technology has become an important part of the field of artificial intelligence. The online speech recognition system based on WebSocket and JavaScript has the characteristics of low latency, real-time and cross-platform, and has become a widely used solution. This article will introduce how to use WebSocket and JavaScript to implement an online speech recognition system.

WebSocket and JavaScript: key technologies for implementing real-time monitoring systems WebSocket and JavaScript: key technologies for implementing real-time monitoring systems Dec 17, 2023 pm 05:30 PM

WebSocket and JavaScript: Key technologies for realizing real-time monitoring systems Introduction: With the rapid development of Internet technology, real-time monitoring systems have been widely used in various fields. One of the key technologies to achieve real-time monitoring is the combination of WebSocket and JavaScript. This article will introduce the application of WebSocket and JavaScript in real-time monitoring systems, give code examples, and explain their implementation principles in detail. 1. WebSocket technology

How to use JavaScript and WebSocket to implement a real-time online ordering system How to use JavaScript and WebSocket to implement a real-time online ordering system Dec 17, 2023 pm 12:09 PM

Introduction to how to use JavaScript and WebSocket to implement a real-time online ordering system: With the popularity of the Internet and the advancement of technology, more and more restaurants have begun to provide online ordering services. In order to implement a real-time online ordering system, we can use JavaScript and WebSocket technology. WebSocket is a full-duplex communication protocol based on the TCP protocol, which can realize real-time two-way communication between the client and the server. In the real-time online ordering system, when the user selects dishes and places an order

How to implement an online reservation system using WebSocket and JavaScript How to implement an online reservation system using WebSocket and JavaScript Dec 17, 2023 am 09:39 AM

How to use WebSocket and JavaScript to implement an online reservation system. In today's digital era, more and more businesses and services need to provide online reservation functions. It is crucial to implement an efficient and real-time online reservation system. This article will introduce how to use WebSocket and JavaScript to implement an online reservation system, and provide specific code examples. 1. What is WebSocket? WebSocket is a full-duplex method on a single TCP connection.

JavaScript and WebSocket: Building an efficient real-time weather forecasting system JavaScript and WebSocket: Building an efficient real-time weather forecasting system Dec 17, 2023 pm 05:13 PM

JavaScript and WebSocket: Building an efficient real-time weather forecast system Introduction: Today, the accuracy of weather forecasts is of great significance to daily life and decision-making. As technology develops, we can provide more accurate and reliable weather forecasts by obtaining weather data in real time. In this article, we will learn how to use JavaScript and WebSocket technology to build an efficient real-time weather forecast system. This article will demonstrate the implementation process through specific code examples. We

Simple JavaScript Tutorial: How to Get HTTP Status Code Simple JavaScript Tutorial: How to Get HTTP Status Code Jan 05, 2024 pm 06:08 PM

JavaScript tutorial: How to get HTTP status code, specific code examples are required. Preface: In web development, data interaction with the server is often involved. When communicating with the server, we often need to obtain the returned HTTP status code to determine whether the operation is successful, and perform corresponding processing based on different status codes. This article will teach you how to use JavaScript to obtain HTTP status codes and provide some practical code examples. Using XMLHttpRequest

How to use insertBefore in javascript How to use insertBefore in javascript Nov 24, 2023 am 11:56 AM

Usage: In JavaScript, the insertBefore() method is used to insert a new node in the DOM tree. This method requires two parameters: the new node to be inserted and the reference node (that is, the node where the new node will be inserted).

See all articles