es6 中 class

 function father(){
    this.y=100;
  }
  father.prototype.getY=function(){

  }
  function chind(){
    this.x=200;
  }
//   chind.prototype=new father
//   chind.prototype.getX=function(){} //使father中私有方法共有,因为这里做了原本prototype重定向了,那我们怎么做到私有的还是私有的,共有的还是共有的
//  let  Chind=new chind
//  console.dir(Chind)
    function chind(){
      father.call(this)
      this.x=200
    }
    chind.prototype=Object.create(father.prototype)
    chind.prototype.getX=function(){}
    let Chind=new chind()
    console.dir(Chind)
// 使用 es6我们怎么写
  class father{
    constructor(){
      this.x=100
    }
    getX(){

    }
  }
  class chind extends father{
    constructor(){
      super()
      this.y=200
    }
    getY(){

    }
  }
  console.dir(new chind)  //其实这里的 constructor做的工作其实就是 上面 es5call的作用

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值