JavaScript Information encapsulation js object entry

Source: Internet
Author: User
The following code encapsulation is common and easy to understand. Only by first understanding this can we gain a deeper understanding of the json format-oriented and definition methods. JavaScript Information Encapsulation
Before coding, we need to understand the following terms;
Encapsulation: hides the internal data representation and implementation details;
Private attributes and Methods: external users can only access and interact with them through their public interfaces.
Scope: In JavaScript, only the function has a scope, and the attributes and methods defined inside the function cannot be accessed externally.
Privileged method: The method declared inside the function that can access internal variables (attributes) of the function, which is memory-consuming;

Function Person () {/** declare private data * nickName, age, email */var nickName, age, email;/** Method for accessing private data (privileged method) * Every time an instance is generated, a new copy is generated for the privileged Method */this. setData = function (pNickName, pAge, pEmail) {nickName = pNickName; age = pAge; email = pEmail}; this. getData = function () {return [nickName, age, email] ;}/ ** methods for directly accessing private data (public methods) * No matter how many instances are generated, only one public method exists in the memory */Person. prototype = {showData: function () {alert ("personal information:" + this. getData (). join ());}}

External Code uses private or public methods to access Internal Attributes

var p = new Person(); p.setData("sky", "26", "vece@vip.qq.com"); p.showData();

DEMO code:

Script function Person () {var nickName, age, email; this. setData = function (pNickName, pAge, pEmail) {nickName = pNickName; age = pAge; email = pEmail}; this. getData = function () {return [nickName, age, email] ;}} Person. prototype = {showData: function () {alert ("personal information:" + this. getData (). join () ;}} var p = new Person (); p. setData ("PHP 文"", "4", "admin@php1.cn"); p. showData (); script

For more information about JavaScript encapsulation, see the PHP Chinese website!

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.