摘要: ES6:extends 和 super结合使用 使用场景:子级需要计算自己独有的函数计算,同时也需要调用父级中的一个操作函数 class Father{ constructor(x,y){ this.x = x; this.y = y; } sum(){ console.log(this,x+thi 阅读全文
posted @ 2022-02-23 18:36 一封未寄出的信 阅读(92) 评论(0) 推荐(0) 编辑
摘要: ES6:extends(继承)和调用父级的普通函数(super) super调用父级中的普通函数 class Father{ say(){ return "你好"; } } class Son extends Father{ say(){ console.log(super.say()+"xxx") 阅读全文
posted @ 2022-02-23 17:20 一封未寄出的信 阅读(210) 评论(0) 推荐(0) 编辑
摘要: ES6:继承(extends)算法(super) super调用构造函数 eg: class Father{ constructor(x,y){ this.x = x; this.y = y; } sum(){ console.log(this.x+this.y); } } class Son ex 阅读全文
posted @ 2022-02-23 15:01 一封未寄出的信 阅读(202) 评论(0) 推荐(0) 编辑
摘要: ES6:extends继承 eg: class Father{ constructor(){ } money(){ console.log(100); } } class Son extends Father{ } var son = new Son(); son.money() 注释:1使用cla 阅读全文
posted @ 2022-02-23 14:21 一封未寄出的信 阅读(248) 评论(0) 推荐(0) 编辑
摘要: ES6:类中添加方法 class Star{ constructor(uname,age){ this.uname=uname; this.age = age; } //方法: sing(song){ console.log(this.uname + song); } } var ldh = new 阅读全文
posted @ 2022-02-23 12:22 一封未寄出的信 阅读(223) 评论(0) 推荐(0) 编辑
摘要: ES6:Class定义类 eg: class Star { constructor(uname,age){ this.uname = uname; this.age = age; } } var lyf = new Star('刘亦菲',18); console,log(lyf); console, 阅读全文
posted @ 2022-02-23 12:02 一封未寄出的信 阅读(138) 评论(0) 推荐(0) 编辑