【JavaScript】经由过程闭包建立具有私有属性的实例对象

静态私有变量

(function(){
    //私有属性
    var name = '';
    Person = function(value) {
        name = value;
    };
    //特权要领
    Person.prototype.getName = function() {
        return name;
    };
    Person.prototype.setName = function(value) {
        name = value;
    };
})();
var person = new Person('hiyohoo');
console.log(person.getName()); //hiyohoo
person.setName('xujian');
console.log(person.getName()); //xujian

模块形式

模块形式是为单例建立私有变量和特权要领。单例是只要一个实例的对象。这类形式常用于对单例举行某种初始化,同时又须要保护其私有变量。

var student = function() {
    //私有变量和函数
    var students = new Array();
    //初始化
    students.push(new Person());
    //大众
    return {
        getStudentCount: function() {
            return students.length;
        },
        registerStudent: function(person) {
            if (person instanceof Person) {
                students.push(person);
            }
        }
    };
}();

增强的模块形式

这类形式专用于单例必需是某种范例的实例,同时还必需增加某些属性和要领对其增强的状况。鄙人面的例子中,student的值是匿名函数返回的stu,也就是Person的一个实例,这个实例有两个大众的要领,用于接见实例属性。

var student = function() {
    //私有变量和函数
    var students = new Array();
    //初始化
    students.push(new Person());
    //建立student的一个部分副本
    var stu = new Person;
    //大众接口
    stu.getStudentCount = function() {
        return students.length;
    };
    stu.registerStudent = function(preson) {
        if (person instanceof Person) {
            students.push(person);
        }
    };
    //返回这个副本
    return stu;
}(); 

转载请说明出处:https://segmentfault.com/a/1190000004590427

文章不定期更新完美,假如能对你有一点点启示,我将不胜幸运。

    原文作者:hiYoHoo
    原文地址: https://segmentfault.com/a/1190000004590427
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞