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

继承性问题

时间:2019-09-26 19:52:24      阅读:72      评论:0      收藏:0      [点我收藏+]

标签:pre   函数   func   create   his   name   nbsp   script   对象   

1.对象的继承

var 新对象=object.create(被继承的对象)

新对象.__proto__==被继承的对象

2.函数的继承

<script>
function Person(name,age){
  this.name=name;
  this.age=age;
}
function Student(name,age,score){
  Person.call(this,name,age);
  this.score=score
}
var zs=new Student(zs,15,95)
console.log(zs)
</script>

打印结果:Student {name: "zs", age: 15, score: 95}

 

继承性问题

标签:pre   函数   func   create   his   name   nbsp   script   对象   

原文地址:https://www.cnblogs.com/zhaodz/p/11593922.html

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