码迷,mamicode.com
首页 > 编程语言 > 详细

javascript组合模式创建对象

时间:2014-09-14 18:09:57      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:io   java   ar   sp   cti   log   on   c   new   

<script>

    function Person(name, age) {
        this.name = name;
        this.age = age;
        this.family = ["father" , "mather" , "sister"] ;
    }

    Person.prototype = {
            constructor: Person,
            say : function () {
                return "name : " + this.name + "age: " + this.age;
            }
            } ;

    var p1 = new Person("zhangsan", 19);
    console.log(p1.family);
    p1.family.push("brother") ;
    console.log(p1.family) ;
    var p2 = new Person("lisi" , 20) ;
    console.log(p2.family) ;

</script>

输出:

["father", "mather", "sister"] 
["father", "mather", "sister", "brother"] 
["father", "mather", "sister"]

注意,数组是引用类型,如果把数组放在原型中,对p1的family的改动会修改p2。所以将引用类型放在构造函数中。



javascript组合模式创建对象

标签:io   java   ar   sp   cti   log   on   c   new   

原文地址:http://my.oschina.net/itfanr/blog/313414

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!