js模拟类继承小例子
时间:2024-04-16 10:38:29
//使用原型继承,中间使用临时对象作为Child的原型属性,临时对象的原型属性再指向父类的原型,
//防止所有子类和父类原型属性都指向通一个对象.
//这样当修改子类的原型属性,就不会影响其他子类和父类
function extend(Child, Parent) {
var F = function(){};
F.prototype = Parent.prototype;
Child.prototype = new F();
Child.prototype.constructor = Child;
Child.base = Parent.prototype;
}
function Parent(name)
{
this.aa = 123;
this.getName = function() {return name;}; //使用闭包模拟私有成员
this.setName = function(value){name=value;};
}
Parent.prototype.print = function(){alert("print!");};
Parent.prototype.hello = function()
{
alert(this.getName() + "Parent")
};
function Child(name,age)
{
Parent.apply(this, arguments);//调用父类构造函数来继承父类定义的属性
this.age = age;
}
extend(Child,Parent); //继承Parent
Child.prototype.hello = function() //重写父类hello方法
{
alert(this.getName() + "Child");
Parent.prototype.hello.apply(this,arguments); //调用父类同名方法
};
//子类方法
Child.prototype.doSomething = function(){ alert(this.age + "Child doSomething"); };
var p1 = new Child("xhan",22);
var p2 = new Child("xxx",33);
p1.hello();
p2.hello();
p1.doSomething(); //子类方法
p1.print(); //父类方法
alert(p1 instanceof Child); //true
alert(p1 instanceof Parent);//true
标签:模拟类继承
0
投稿
猜你喜欢
python获取网页状态码示例
2023-11-23 00:57:10
pytorch深度神经网络入门准备自己的图片数据
2023-12-07 13:55:58
pandas按若干个列的组合条件筛选数据的方法
2023-10-27 03:49:07
golang简单读写文件示例
2024-05-22 10:13:21
利用python实现逐步回归
2023-10-05 19:24:27
仿豆瓣分页原型(Javascript版)
2007-11-05 14:04:00
基于jQuery的自动完成插件
2011-02-05 10:55:00
Python3读取和写入excel表格数据的示例代码
2022-01-21 10:33:55
Python实现对二维码数据进行压缩
2022-10-22 12:51:59
Python中有趣在__call__函数
2022-04-04 14:06:22
python 实现二维数组的索引、删除、拼接操作
2021-03-01 10:28:08
将python项目打包成exe与安装包的全过程
2023-03-15 21:49:16
python 处理telnet返回的More,以及get想要的那个参数方法
2023-02-09 11:32:14
Laravel使用PHPQRCODE实现生成带有LOGO的二维码图片功能示例
2024-05-03 15:28:12
一文了解MySQL二级索引的查询过程
2024-01-25 23:24:54
Python绘图Matplotlib之坐标轴及刻度总结
2023-10-01 15:56:39
encodeURIComponent用法UrlEncode与URLEncode.encode()
2009-05-11 12:40:00
[翻译]标记语言和样式手册 Chapter 1 清单
2008-01-15 10:26:00
JavaScript经典效果集锦
2013-08-13 09:29:34
教你怎么用Python实现自动生日祝福
2022-04-08 01:03:25