(转载请注明出处)(๑•ᴗ•๑)
复制代码
首先准备一个构造函数(后几个皆以此为例)函数
function Person() {
this.name = 'person',
this.age = 18
}
Person.prototype.eat = function () {}
复制代码
function Student() {}
Student.prototype = new Person
var s = new Student
复制代码
此时在控制台中查看S里是这样的性能
{
__proto__: Student.prototype {
name: 'person',
age: 18,
__proto__: Person.prototype {
eat: function () {},
__proto__: Object.prototype
}
}
}
复制代码
优势: 使用简单,好理解ui
缺点: 原型链多了一层,而且这一层没什么用this
function Student() {
Person.call(this)
}
var s = new Student
复制代码
此时在控制台中查看S里是这样的spa
{
name: 'person',
age: 18,
__proto__: Student.prototype {
constructor: Student,
__proto__: Object.prototype
}
}
复制代码
优势: 直接把属性变成本身的了prototype
缺点: 没有父类原型上的东西code
function Student() {
Person.call(this)
}
Student.prototype = new Person
}
var s = new Student
复制代码
此时在控制台中查看S里是这样的cdn
{
name: 'person',
age: 18,
__proto__: new Person {
name: 'person',
age: 18,
__proto__: Person.prototype {
eat: function () {},
constructor: Person,
__proto__: Object.prototype
}
}
}
复制代码
优势: 属性继承来变成本身的,原型也继承过来了blog
缺点: 第一层原型没用,继承的原型多走一步继承
function Student() {
var p = new Person
for (var key in p) {
Student.prototype[key] = p[key]
}
}
var s = new Student
复制代码
此时在控制台中查看S里是这样的
{
__proto__: Student.prototype {
name: 'person',
age: 18,
eat: function () {},
constructor: Student,
__proto__: Object.prototype
}
}
复制代码
优势: 属性和方法都继承来放在我本身的原型上了
缺点: for in 循环,至关消耗性能的一个东西
function Student() {
this.gender = '男'
var p = new Person
return p
}
Student.prototype.fn = function () {}
var s = new Student
复制代码
这里很明显,此时直接获得的是 Person 的实例,this.gender
和fn()
不会存在在s中
优势: 完美的继承了属性和方法
缺点: 根本没有本身的东西了
function Student() {
Person.call(this)
}
Student.prototype.fn = function () {}
Student.prototype = Person.prototype
var s = new Student
复制代码
此时在控制台中查看S里是这样的
{
name: 'person',
age: 18,
__proto__: Person.prototype {
eat: function () {},
constructor: Person,
__proto__: Object.prototype
}
}
复制代码
优势:原型的东西不须要多走一步
缺点: 没有本身的原型
function Student() {
Person.call(this)
}
(function () {
function Abc() {}
Abc.prototype = Person.prototype
Student.prototype = new Abc
})()
var s = new Student
复制代码
此时在控制台中查看S里是这样的
{
name: 'person',
age: 18,
__proto__: new Abc {
__proto__: Person.prototype {
eat: function () {}
}
}
}
复制代码
优势: 属性继承来是本身的,方法也继承来了,组合式继承的中间那个环节多余的属性没有了
缺点: 就是多了一个 空环,致使我访问继承的方法的时候要多走一步
function Student() {
Person.call(this)
}
(function () {
var obj = Person.prototype
for (var key in obj) {
Student.prototype[key] = obj[key]
}
})()
var s = new Student
复制代码
此时在控制台中查看S里是这样的
{
name: 'person',
age: 18,
__proto__: Student.prototype {
constructor: Student,
eat: function () {},
__proto__: Object.prototype
}
}
复制代码
优势: 属性原型都有了,没有多余的空环,
constructor
直接指向本身
缺点:
for in
循环。而后就没有缺点~~~(由于是自创的hhh)
复联四你看了吗?被剧透了吗-。-好气哟
复制代码