`

Js继承(转载)

    博客分类:
  • JS
阅读更多
记录自浪曦风中叶老师的JavaScript课堂

js继承有5种实现方式:
1、继承第一种方式:对象冒充
  function Parent(username){
    this.username = username;
    this.hello = function(){
      alert(this.username);
    }
  }
  function Child(username,password){
    //通过以下3行实现将Parent的属性和方法追加到Child中,从而实现继承
    //第一步:this.method是作为一个临时的属性,并且指向Parent所指向的对象,
    //第二步:执行this.method方法,即执行Parent所指向的对象函数
    //第三步:销毁this.method属性,即此时Child就已经拥有了Parent的所有属性和方法
    this.method = Parent;
    this.method(username);//最关键的一行
    delete this.method;

    this.password = password;
    this.world = function(){
      alert(this.password);
    }
  }
  var parent = new Parent("zhangsan");
  var child = new Child("lisi","123456");
  parent.hello();
  child.hello();
  child.world();

2、继承第二种方式:call()方法方式
  call方法是Function类中的方法
  call方法的第一个参数的值赋值给类(即方法)中出现的this
  call方法的第二个参数开始依次赋值给类(即方法)所接受的参数

  function test(str){
    alert(this.name + " " + str);
  }
  var object = new Object();
  object.name = "zhangsan";
  test.call(object,"langsin");//此时,第一个参数值object传递给了test类(即方法)中出现的this,而第二个参数"langsin"则赋值给了test类(即方法)的str

  function Parent(username){
    this.username = username;
    this.hello = function(){
      alert(this.username);
    }
  }
  function Child(username,password){
    Parent.call(this,username);
   
    this.password = password;
    this.world = function(){
      alert(this.password);
    }
  }
  var parent = new Parent("zhangsan");
  var child = new Child("lisi","123456");
  parent.hello();
  child.hello();
  child.world();

3、继承的第三种方式:apply()方法方式
  apply方法接受2个参数,
    A、第一个参数与call方法的第一个参数一样,即赋值给类(即方法)中出现的this
    B、第二个参数为数组类型,这个数组中的每个元素依次赋值给类(即方法)所接受的参数

  function Parent(username){
    this.username = username;
    this.hello = function(){
      alert(this.username);
    }
  }
  function Child(username,password){
    Parent.apply(this,new Array(username));
   
    this.password = password;
    this.world = function(){
      alert(this.password);
    }
  }
  var parent = new Parent("zhangsan");
  var child = new Child("lisi","123456");
  parent.hello();
  child.hello();
  child.world();

4、继承的第四种方式:原型链方式,即子类通过prototype将所有在父类中通过prototype追加的属性和方法都追加到Child,从而实现了继承
  function Person(){
  }
  Person.prototype.hello = "hello";
  Person.prototype.sayHello = function(){
    alert(this.hello);
  }
 
  function Child(){
  }
  Child.prototype = new Person();//这行的作用是:将Parent中将所有通过prototype追加的属性和方法都追加到Child,从而实现了继承
  Child.prototype.world = "world";
  Child.prototype.sayWorld = function(){
    alert(this.world);
  }
 
  var c = new Child();
  c.sayHello();
  c.sayWorld();

5、继承的第五种方式:混合方式
  混合了call方式、原型链方式

  function Parent(hello){
    this.hello = hello;
  }
  Parent.prototype.sayHello = function(){
    alert(this.hello);
  }

  function Child(hello,world){
    Parent.call(this,hello);//将父类的属性继承过来
    this.world = world;//新增一些属性
  }

  Child.prototype = new Parent();//将父类的方法继承过来

  Child.prototype.sayWorld = function(){//新增一些方法
    alert(this.world);
  }

  var c = new Child("zhangsan","lisi");
  c.sayHello();
  c.sayWorld();
分享到:
评论

相关推荐

    Javascript - 全面理解 caller,callee,call,apply (转载)

    JavaScript是Web开发中不可或缺的一部分,尤其在前端领域更是发挥着举足轻重的作用。这篇文章将深入探讨四个关键概念:caller、callee、call和apply,它们都是JavaScript函数操作的核心部分,对于理解和使用高级...

    (转载)GWT -EXT学习笔记-基础

    <script type="text/javascript" src="js/adapter/ext/ext-base.js"> <script type="text/javascript" src="js/ext-all.js"> ``` 2. 修改`Register.gwt.xml`文件,添加对GWT-EXT的继承声明: ```xml ``` ###...

    转载面向对象的理解

    ### 面向对象的理解 #### 一、面向过程与面向对象的概念对比 ...总结来说,面向对象编程通过封装、继承和多态等机制,提高了代码的可读性、可维护性和可扩展性,成为现代软件开发中的主流编程范式之一。

    不明飞行物:互联网转载

    在这个特定的场景下,"不明飞行物:互联网转载"可能是指一个关于JavaScript技术的项目或讨论,因为标签明确指出了“JavaScript”。 JavaScript,作为互联网开发中的核心语言,它的应用无处不在,从网页交互到服务器...

    淘宝客C#开源码(转载下载)

    在这个"淘宝客C#开源码(转载下载)"项目中,我们关注的是一个使用C#编程语言开发的微信小程序源代码。C#是一种面向对象的、现代的编程语言,广泛应用于Windows平台的应用程序开发,尤其是微软的.NET框架。 这个...

    转载 - 26本 Ruby/Rails 相关英文图书简评

    9. **Web 开发进阶**:随着经验的增长,开发者可能还会接触到话题如前端框架(如 React、Vue.js 或 Angular)、JavaScript 深度集成、WebSocket 实现、性能优化等。 10. **社区和资源**:Ruby 和 Rails 社区活跃,...

    how-javascript-works:有关javascript工作原理,事件循环,服务工作者等的知识

    第十五章:类和继承及 Babel 和 TypeScript 代码转换探秘 第十六章:存储引擎及如何选择合适的存储 API 第十七章:Shadow DOM 内部构造及如何构建独立组件 第十八章:WebRTC 及点对点网络通信机制 第十九章:自定义...

    Ice-demo:基于Zeroc Ice 3.6.1的Android,iOS,Java,Javascript示例,Ice继承地址https

    尊重作者研究,转载请注明出处。 ======== 创建时间 2015-12-28 创建人 邓燎燕 版本号 1.0 修改时间 修改人 修改内容 2017-04-13 邓燎燕 添加 2017-03-09 邓燎燕 添加keystore-explorer地址 2016-01-18 邓燎燕 ...

    项目综合案例采用两年所学的内容

    学的课程有java初级 Java高级 java的面向对象 java的面向过程 java的封装 继承 多态 jdbc JavaScript初级内容 Html Css 这个学期开始前端的第二部分 jquery的基础操作 jquery的选择器 事件 效果 Css3 Html5新的属性 ...

    Auntion TableSort(最新修改,支持Float,支持锁定不排序行)

    转载请将此说明全部发出,因为可能会有新手不会用,并且该说明会有更详细的扩展说明. 为了国内javascript水平的共同进步,让我们一起努力! 此版为3天完成,今后可能会有升级,请关注我的blog. -----------------------...

    JAVA文章精选542个(txt) 免费分享

    这篇文章可能包含Java编程的简单示例,用于解释基本概念,如类、对象、继承、多态等,对于初学者来说是非常有用的参考资料。 5. **转载--微软98年关于MTS和EJB的比较说明文件.其实Sun也有类似的对比文件,我忘记在...

Global site tag (gtag.js) - Google Analytics