码迷,mamicode.com
首页 > 其他好文 > 详细

原型继承中对象的问题

时间:2017-10-20 15:00:02      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:his   func   http   技术   new   ons   prototype   问题   继承   

<script>
    function Parent() {
        this.data={a1:‘a1‘}
        this.show=function () {
            console.log(this.data)
        }
    }
    function Child(){
        this.set=function () {
            this.data[‘a2‘]=‘a2‘   //改变原型中的对象
            this.data=‘d‘ //改变当前对象的data,并不能改变 原型上面的 data
        }
    }
    //所有的原型都是指向同一个对象,(引用的同一个对象),改变则所有的改变
    Child.prototype = new Parent()
    var child1 = new  Child()
    var child2 = new  Child()
    child1.set()
    //   this.data[‘a2‘]=‘a2‘   //改变原型中的对象,指针的形式
    //   this.data=‘d‘ //改变当前对象的data,并不能改变 原型上面的 data
    //   不能改变原型上面的属性值,只能改变原型什么属性对应的应用中的值
    child2.show()
    //   对象中不含this.data,返回原型上面的data,因为指向的是同一个原型,所有打印 {a1:‘a1‘,a2:‘a2‘}
    console.log(‘child1‘,child1)
    console.log(‘child2‘,child2)
</script>

  

技术分享

原型继承中对象的问题

标签:his   func   http   技术   new   ons   prototype   问题   继承   

原文地址:http://www.cnblogs.com/jiebba/p/7699464.html

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