详细介绍javascript使用prototype实现OOP继承的方法
程序员文章站
2023-12-31 18:41:22
...
使用prototype特性,可以很方便的在子类中继承父类的方法和属性。
下例中Vegetable视为父类,Celery视为子类。
Vegetable 拥有属性taste, 方法fun1
Celery 拥有属性 color, 方法fun2,如果再定义与Vegetable 中同名的属性或方法,则会覆盖父类Vegetable 中对应的属性和方法。
function Vegetable(){ this.taste='delicious'; this.fun1 = function(){ alert('Vegetable fun1 doing...'); } } function Celery(){ this.color = 'green'; this.taste = 'bad'; this.fun1 = function(){ alert('Celeryfun1 doing...'); } this.fun2 = function(){ alert('Celery fun2 doing...'); } } Celery.prototype = new Vegetable(); var stick = new Celery(); var polymorphed = stick.taste; alert(polymorphed); alert(stick.color); stick.fun1(); stick.fun2();
以上就是详细介绍javascript使用prototype实现OOP继承的方法的详细内容,更多请关注其它相关文章!
推荐阅读
-
详细介绍javascript使用prototype实现OOP继承的方法
-
JavaScript使用prototype原型实现的封装继承多态示例
-
JavaScript使用原型和原型链实现对象继承的方法详解
-
JavaScript使用prototype原型实现的封装继承多态示例
-
JavaScript使用原型和原型链实现对象继承的方法详解
-
JavaScript的String类型replace()方法介绍和使用replace()方法实现简单html模板替换功能...
-
JavaScript使用Prototype实现面向对象的方法_javascript技巧
-
基于JavaScript实现继承机制之构造函数方法对象冒充的使用详解_基础知识
-
详细介绍javascript中replace使用的方法总结
-
JavaScript使用Prototype实现面向对象的方法_javascript技巧