JS中的继承

2019-03-26  本文已影响0人  饕餮潴

js并不是想java一样面向对象,而是基于对象,所以js是通过prototype的原型链继承

prototype

function Human(name){
  this.name=name
}
Human.prototype.run=function(){
  console.log("我叫“+this.name+",我在跑")
  return undefined
}
function Man(name){
  Human.call(this.name)
  this.gender='男'
}
var f=funticon(){
f.prototype=Human.prototype
Man.prototype=new f()

Man.prototype.fight=function(){
  console.log('啪啪打脸')
}

class 语法糖 (es6)

class Human{
    construction(name){
        this,name=name
    }
    run(){
          console.log("我叫“+this.name+",我在跑")
          return undefined
          }
  }
class Man extends Human{
  construction(name){
      super(name)
    this.gender='男'
   }
  fight(){
        console.log('啪啪打脸')
  }
}

原型链继承

优点:

缺点:

借用构造函数实现继承

优点:

缺点:

上一篇 下一篇

猜你喜欢

热点阅读