【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

模塊模式

模塊模式是爲單例建立私有變量和特權方法。單例是隻有一個實例的對象。這種模式經常使用於對單例進行某種初始化,同時又須要維護其私有變量。segmentfault

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;
}();

轉載請註明出處:http://www.javashuo.com/article/p-gehuvfjp-mq.htmlprototype

文章不按期更新完善,若是能對你有一點點啓發,我將不勝榮幸。code

相關文章
相關標籤/搜索