js重新讲解继承,es5的一些继承,es6继承的改变 …
2018-06-24 00:11:24来源:未知 阅读 ()
es5 利用原型公有私有继承
function Parent(name) { this.name = name } Parent.prototype.home = '北京'; function Child() { this.age = 8; } //将父类的实例绑定在子类的原型上 Child.prototype = new Parent('aa'); //实例化原型 let child = new Child(); //这时候继承父类的公有私有属性 console.log(child.home+child.name); // 结果 北京 + aa
es5 私有继承,改变this指向,公有不继承
function Parent(name) {
this.name = name
}
//父类的公有属性
Parent.prototype.home = '北京';
function Child(name) {
this.age = 8;
Parent.call(this,...arguments);
}
let child = new Child('hello');
console.log(child.home+child.name);
//结果是 undefined +hello
es5继承公有属性,私有属性不继承
function Parent(name) { this.name = name } Parent.prototype.home = '北京'; function Child() { this.age = 8; } Child.prototype = Object.create(Parent.prototype); let child = new Child(); //这时候继承只继承父类的公有属性 父类的私有属性没有继承 console.log(child.home+child.name); // 结果 北京 + indefined
es6 继承,私有公有都继承extend//定义一个类
class Person { //控制器 constructor(name,age){ this.name=name; this.age=age; } eat(){ console.log("吃饭"); } } //只继承共有的 //关键字 extends 公私有都会继承 class Girl extends Person{ constructor(name,age){ super(name,age); //默认调用父类,并且this就是girl实例 } } let g=new Girl('aa',18); console.log(g.name,g.age); g.eat();
//结果aa 18
//
吃饭
node继承 利用util模块
inherits
function Parent(name) { this.name = name } Parent.prototype.home = '北京'; function Child() { this.age = 8; } // es5 里面判断数据类型 // indexof // instanceof // constuctor // Object.prototype.toString.call //util 判断数据类型 console.log(util.isArray({})); //继承使用util里的方法 inherits util.inherits(Child,Parent);
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- 深入理解JavaScript是如何实现继承的 2020-02-25
- jquery库的tab新形式的实例讲解 2019-10-12
- Javascript之对象的继承 2019-08-14
- js继承的几种方式 2019-08-14
- 深入V8引擎-AST(4) 2019-08-14
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash