对比es6class类和构造函数
-
构造函数
-
在原来class 类这个语法糖没有出来之前 我们一般会把方法挂在prototype 上 为了防止过多的开辟内存
-
1 // 构造函数-------------------------------------------------------- 2 function Round(radius) { 3 this.radius = radius; 4 this.PI = Math.PI; 5 this.arr = [this.area().toFixed(2), this.perimeter().toFixed(2)]; 6 } 7 Round.prototype.area = function () { 8 return this.PI * Math.pow(this.radius, 2); 9 }; 10 Round.prototype.perimeter = function () { 11 return 2 * this.PI * this.radius; 12 };
console.log(new Round(4).arr);// 打印 ['50.27', '25.13'] -
es6 class 写法
- class 是个语法糖是把上面的方法重新封装把方法直接写在class这个大类里就等于挂在prototype 上
-
1 // es6 新写法--------------------------------------------------- 2 class MyRound { 3 constructor(radius) {//固定的 4 this.radius = radius; 5 this.PI = Math.PI;// 调用Math对象的PI 6 this.arr = [this.area().toFixed(2), this.perimeter().toFixed(2)];//toFixed 保留两位小数 7 } 8 area() {//自己定义的 9 return this.PI * Math.pow(this.radius, 2);//Math.pow()平方 10 } 11 perimeter() {//自己定义的 12 return 2 * this.PI * this.radius; 13 } 14 } 15 console.log(new myRound(4).arr);// 打印 ['50.27', '25.13']
分类:
js
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 分享一个免费、快速、无限量使用的满血 DeepSeek R1 模型,支持深度思考和联网搜索!
· 基于 Docker 搭建 FRP 内网穿透开源项目(很简单哒)
· 25岁的心里话
· ollama系列01:轻松3步本地部署deepseek,普通电脑可用
· 按钮权限的设计及实现