ES6 class

 

ES6比从前直接用function 做constructor 更接近JAVA,PHP之类的样子

1
2
3
4
5
6
7
8
9
10
11
12
13
14
class Cat {
  constructor(look,run){
    this.look = look;
    this.run = run ;
  }
}
 
let subie = new Cat("adorable","run like a cat")
let yuhki = new Cat("cute","run like a storm")
console.log(yuhki.run)
Cat.prototype.meow= function(){
  return 'am i '+ this.look +' ? '
}
console.log(yuhki.meow());

  

从前的 :

1
2
3
4
5
6
7
8
9
10
function Cat (look,run){
this.look = look;
this.run = run ;
}
var yuhki = new Cat("cute","run like a storm")//yuhki.constructor 指向 function Cat <br>//在new创建对象的时候,会把function Cat 的 prototype属性指向的prototype对象的 construtor属性指向的constructor对象设置为function Cat。<br>//用new创造的对象和函数的区别,对象是没prototype属性的。但是有__proto__,指向该对象的constructor的prototype。
console.log(yuhki.run)
Cat.prototype.meow= function(){ //一样,向Cat.prototype对象 中加入f()
return 'am i '+ this.look +' ? '
}
console.log(yuhki.meow());//call f() from prototype     <br><br><br><br>
posted @   Esther_Cheung  阅读(150)  评论(0编辑  收藏  举报
编辑推荐:
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
· 没有源码,如何修改代码逻辑?
阅读排行:
· 分享4款.NET开源、免费、实用的商城系统
· 全程不用写代码,我用AI程序员写了一个飞机大战
· MongoDB 8.0这个新功能碉堡了,比商业数据库还牛
· 白话解读 Dapr 1.15:你的「微服务管家」又秀新绝活了
· 上周热点回顾(2.24-3.2)
点击右上角即可分享
微信分享提示