Basic concepts of JS object-oriented

Source: Internet
Author: User
Code

Function man (){
// Private Static attributes
VaR sex = "male ";
// Private Static Method
Function checksex (){
Return (sex = "male ");
}
// Private Method
This. _ getsex = function (){
// Call the Private Static Method
If (checksex ())
Return "male ";
Else
Return "female ";
}
// Private Method
This. getfirstname = function (){
Return "Li ";
};
// Private Method
This. getlastname = function (){
Return "ping ";
};
}

// Public Method
Man. Prototype. getnickname = function (){
Return "leepy ";
};

// Public Method
Man. Prototype. getfullname = function (){
Return this. getfirstname () + "" + this. getlastname ();
};

// Public Method
Man. Prototype. getsex = function (){
// Call a private Method
Return this. _ getsex ();
};

// Public static method
Man. Say = function (){
Return "Happy New Year! ";
}

It can be understood that adding prototype is a public method, and calling a public static method directly using the function name is a public static method.

In a function, the private static method is used. If this is added, the private method is used.

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.