Home Web Front-end JS Tutorial Javascript object-oriented--method

Javascript object-oriented--method

Jan 04, 2017 am 09:41 AM

Object-oriented JavaScript is a relatively popular concept in recent years. Due to my limited talent and limited knowledge, although I have done many web projects and read a lot of esoteric materials and tutorials on the Internet, I still have little understanding of their esoteric theories. I read it some time ago. After reading some books, I finally have my own understanding. Today I am going to pretend for a while. If you think it is very profound, please despise me directly. If you think it is wrong, please just criticize me.

First understand the following things in a general way.

Writing function fn(){} or var fn=function(){}, etc. in JS code, you can understand it as an object, of course, an array, etc.

Before understanding object-oriented, let’s first understand the following things.

1. Calling object methods

The function written in the outermost layer of js can also be understood as a method of the window object. The defined variable can also be called a property of the window object. For example:

var test=function(){
alert("123")
}
当然上面的你也可以这样定义
function test(){
alert("123")
}
Copy after login

As a method of the window object, we can call it like this

test()//Pop up the warning box 123 (because the window object is a top-level object, we can omit it)
window .test()//The warning box 123 pops up
window['test']()//The warning box 123 pops up. Test can be understood as a method value under the window array object.

Through the above examples, we have a general understanding of how to use and call object methods.

2, Private methods

Private methods are methods that can only be used within the scope of the object. This can be understood in terms of variable scope.
The functions in the above examples can be understood as private methods of the window object. Continue with the example below.

var pet=function(){
 function showpet(){
 alert("123")
 }
 showpet();//私有方法可以在函数作用域范围内使用。
 var temp="私有变量只有在函数或者对象作用域范围内能访问"
}
showpet();//会出错
pet.showpet()//还是不能这样调用
var Penguin=new pet() //实例化一个pet对象
Penguin.showpet()//不好意思这样子还是不能让你调用。
Copy after login

What should I do if the method I want to define can be called outside the scope of the object? How can I use private methods? Let’s look at the next bit.

3. Static method

With the above questions, let’s continue the above example.

var pet=function(){
 function showpet(){//私有方法
 alert("123")
 }
 showpet();//私有方法可以在函数作用域范围内使用。
}
pet.show=function(){//给pet对象添加一个静态方法。
alert("456")
}
pet.name="Penguin"//给pet对象添加一个静态属性。
pet.show()//弹出警告框456
alert(pet.name)//弹出警告框Penguin
//继续思维碰撞
=====================
var Penguin=new pet() //实例化一个pet对象
Penguin.show()//不好意思,这个静态方法好像没有被实例继承。有这种思路值得表扬啊,加油!
Copy after login

The above example shows you what a static method is. Of course, you may not understand it. In fact, I don’t understand it either, because I am also a novice, but as long as you read it, you will know how to write a static method for an object. Method, just how to call the static method. Maybe one day, you will suddenly understand and come back to teach me. With the above questions, let's take a look at the methods that can be called by instantiated objects.

4. Public methods

Public methods are usually implemented by modifying the prototype of the constructor. After modifying the prototype of an object, all instances of the object will inherit the modification of the prototype (this sentence Extremely pretentious, please ignore it if you feel vague).

Modify the object prototype method and continue the above example.

pet.prototype.setname=function(str){//通过修改原型添加一个公有方法,用于添加修改实例对象的name
name=str;
}
Copy after login

Look at the example:

var pet=function(){
 function showname(){//私有方法
 alert(this.name)
 }
 this.show=function(){ //如果这里不理解,请注意这个方法下面就要介绍了。
 showname();
 }
}
pet.prototype.setname=function(str){
name=str;
}
var Penguin=new pet()
 Penguin.setname("Penguin");//添加实例的name值为Penguin
 Penguin.show();   //弹出Penguin
 Penguin.setname("wind");//添加实例的name值为wind
 Penguin.show();   //弹出wind
Copy after login

Run the code and have fun.

<script>
var pet=function(){
 name:"123",
 function showname(){//私有方法
 alert(this.name)
 }
 this.show=function(){
 showname();
 }
 }
pet.prototype.setname=function(str){
 name=str;
}
 var Penguin=new pet()
 Penguin.setname("Penguin");
Penguin.show();
Penguin.setname("wind");
Penguin.show();
</script>
Copy after login

5. Privileged method (object or function external interface)

In fact, we have already used this method in the above example. This method can be called by instantiated object inheritance. By defining the method via the thsi keyword inside the constructor. Privileged methods can be publicly accessed outside the constructor (limited to instantiated objects), and can also access private members and methods, so they are most suitable as interfaces for objects or constructors. Through privileged functions we can control public Method access to private methods, which has many applications in JS framework extensions.

Readers can think that the above is a paragraph of P. Let’s take a look at how to define a privileged method, how to reference a privileged method, and continue to call the above examples to see.

var pet=function(){
 function showname(){//私有方法
 alert(this.name)
 }
 this.show=function(){//通过使用this关键字定义一个特权方法。
 showname();  //在特权方法中访问私有方法;
 }
}
pet.prototype.setname=function(str){
name=str;
}
var Penguin=new pet();//实例化一个pet对象
 Penguin.setname("Penguin");//调用公有方法修改
 Penguin.show();   //调用特权方法访问私有方法,弹出name
Copy after login

First create a privileged method by using this.fn=function(){} in the constructor. Access private methods in privileged functions;

The instantiated object can use some private methods by accessing privileged functions. The method of accessing privileged functions is the same as accessing public functions.

The first part is here for the time being. The next part will use an example to explain how to install B in the object-oriented way.

The above is the entire content of this article. I hope it will be helpful to everyone. Friends who are interested can read "Javascript Object-Oriented--Encapsulation". Thank you for your support to the PHP Chinese website!

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

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

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)

Replace String Characters in JavaScript Replace String Characters in JavaScript Mar 11, 2025 am 12:07 AM

Detailed explanation of JavaScript string replacement method and FAQ This article will explore two ways to replace string characters in JavaScript: internal JavaScript code and internal HTML for web pages. Replace string inside JavaScript code The most direct way is to use the replace() method: str = str.replace("find","replace"); This method replaces only the first match. To replace all matches, use a regular expression and add the global flag g: str = str.replace(/fi

jQuery Check if Date is Valid jQuery Check if Date is Valid Mar 01, 2025 am 08:51 AM

Simple JavaScript functions are used to check if a date is valid. function isValidDate(s) { var bits = s.split('/'); var d = new Date(bits[2] '/' bits[1] '/' bits[0]); return !!(d && (d.getMonth() 1) == bits[1] && d.getDate() == Number(bits[0])); } //test var

jQuery get element padding/margin jQuery get element padding/margin Mar 01, 2025 am 08:53 AM

This article discusses how to use jQuery to obtain and set the inner margin and margin values ​​of DOM elements, especially the specific locations of the outer margin and inner margins of the element. While it is possible to set the inner and outer margins of an element using CSS, getting accurate values ​​can be tricky. // set up $("div.header").css("margin","10px"); $("div.header").css("padding","10px"); You might think this code is

10 jQuery Accordions Tabs 10 jQuery Accordions Tabs Mar 01, 2025 am 01:34 AM

This article explores ten exceptional jQuery tabs and accordions. The key difference between tabs and accordions lies in how their content panels are displayed and hidden. Let's delve into these ten examples. Related articles: 10 jQuery Tab Plugins

10 Worth Checking Out jQuery Plugins 10 Worth Checking Out jQuery Plugins Mar 01, 2025 am 01:29 AM

Discover ten exceptional jQuery plugins to elevate your website's dynamism and visual appeal! This curated collection offers diverse functionalities, from image animation to interactive galleries. Let's explore these powerful tools: Related Posts: 1

HTTP Debugging with Node and http-console HTTP Debugging with Node and http-console Mar 01, 2025 am 01:37 AM

http-console is a Node module that gives you a command-line interface for executing HTTP commands. It’s great for debugging and seeing exactly what is going on with your HTTP requests, regardless of whether they’re made against a web server, web serv

Custom Google Search API Setup Tutorial Custom Google Search API Setup Tutorial Mar 04, 2025 am 01:06 AM

This tutorial shows you how to integrate a custom Google Search API into your blog or website, offering a more refined search experience than standard WordPress theme search functions. It's surprisingly easy! You'll be able to restrict searches to y

jquery add scrollbar to div jquery add scrollbar to div Mar 01, 2025 am 01:30 AM

The following jQuery code snippet can be used to add scrollbars when the div content exceeds the container element area. (No demonstration, please copy it directly to Firebug) //D = document //W = window //$ = jQuery var contentArea = $(this), wintop = contentArea.scrollTop(), docheight = $(D).height(), winheight = $(W).height(), divheight = $('#c

See all articles