JavaScript Information encapsulation js object entry

Source: Internet
Author: User

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;
Copy codeThe Code is as follows:
Function Person ()
{
/*
* Declare private data
* Nickname, age, email
*/
Var nickName, age, email;
/*
* Methods for accessing private data (privileged methods)
* 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];
}
}
/*
* Method for directly accessing private data (public method)
* No matter how many instances are generated, the public method only has one copy in the memory.
*/
Person. prototype = {
ShowData: function ()
{
Alert ("personal information:" + this. getData (). join ());
}
}


External Code uses private or public methods to access Internal Attributes
Copy codeThe Code is as follows:
Var p = new Person ();
P. setData ("sky", "26", "vece@vip.qq.com ");
P. showData ();

DEMO code:

[Ctrl + A select all Note: If you need to introduce external Js, You need to refresh it to execute]

Related Article

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.