ES6中类和对象的代码示例
程序员文章站
2022-04-26 20:36:25
...
本篇文章给大家带来的内容是关于ES6中类和对象的代码示例,有一定的参考价值,有需要的朋友可以参考一下,希望对你有所帮助。
1.基本定义和生成实例
{ class Parent { constructor(name = 'haha') { this.name = name; } } let parent = new Parent('v'); console.log('构造函数和实例', parent); // Parent {name: "v"} }
2.继承
{ class Parent { constructor(name = 'haha') { this.name = name; } } class Child extends Parent { } console.log('继承', new Child()); // Child {name: "haha"} }
3.继承传递参数
{ class Parent { constructor(name = 'haha') { this.name = name; } } class Child extends Parent { constructor(name = 'child') { // super()方法,用来解决 继承怎么传递参数(怎么覆盖父类的参数) // super的参数列表就是父类构造函数的参数列表,如果参数为空,就采用父类的参数默认值 super(name); // super必须放在构造函数第一行 this.type = 'child'; } } console.log('继承传递参数', new Child('hello')); // Child {name: "hello", type: "child"} }
4.getter setter
{ class Parent { constructor(name = 'haha') { this.name = name; } // longName 是一个属性,不是方法 get longName() { return 'lu-' + this.name; } // longName 是一个属性,不是方法 set longName(value) { this.name = value; } } let person = new Parent(); console.log('getter', person.longName); // lu-haha person.longName = 'hello'; console.log('setter', person.longName); // lu-hello }
5.静态方法
{ class Parent { constructor(name = 'haha') { this.name = name; } // static 关键字用来定义静态方法 static tell() { console.log('do tell'); } } // 静态方法,直接通过类去调用,不是通过实例 Parent.tell(); // do tell }
6.静态属性
{ class Parent { constructor(name = 'haha') { this.name = name; } } // 直接在类上定义静态属性 Parent.type = 'test'; // 读取静态属性时,也是直接拿类读取 console.log(Parent.type); // test }
以上就是ES6中类和对象的代码示例的详细内容,更多请关注其它相关文章!
上一篇: 常用的证件号码正则表达式写法有哪些
下一篇: 纯CSS如何绘制三角形
推荐阅读
-
浅谈python中的面向对象和类的基本语法
-
java对象是什么意思(java中的对象和类理解)
-
C#接口在派生类和外部类中的调用方法示例
-
PowerShell中调用.NET对象的静态方法、静态属性和类方法、类属性例子
-
PHP中的输出echo、print、printf、sprintf、print_r和var_dump的示例代码
-
荐 浅谈Java中类和对象的初始化、实例化以及方法重载的底层机制
-
用js实现before和after伪类的样式修改的示例代码
-
带你快速了解Java中类和对象的关系
-
Android在类微信程序中实现蓝牙聊天功能的示例代码
-
SQL Server中的集合运算: UNION, EXCEPT和INTERSECT示例代码详解