javascript设计模式-继承

javascript继承分为两种:类式继承(原型链、extend函数)、原型式继承(对继承而来的成员的读和写的不对等性、clone函数)。

  1. 类式继承-->prototype继承:
     1     function Person(name){
     2         this.name = name;
     3     }
     4     Person.prototype.getName = function(){
     5         return this.name;
     6     }
     7     
     8     //继承
     9     function Author(name,books){
    10         Person.call(this,name);
    11         this.books = books;
    12     }
    13     Author.prototype = new Person();
    14     Author.prototype.constructor = Author;
    15     Author.prototype.getBooks = function(){
    16         return this.books;
    17     }
    18     
    19     var author = new Author("zap","javascript程序设计");
    20     console.log(author);
  2. 类式继承-->extend函数:
     1     function extend(subClass,superClass){
     2         var F = function(){};
     3         F.prototype = superClass.prototype;
     4         subClass.prototype = new F();
     5         subClass.prototype.constructor = subClass;
     6         
     7         subClass.superClass = superClass.prototype;
     8         if(superClass.prototype.constructor == Object.prototype.constructor){
     9             superClass.prototype.constructor =  superClass;
    10         }
    11     }
    12     
    13     
    14     /*Class Person*/
    15     
    16     function Person(name){
    17         this.name = name;
    18     }
    19     Person.prototype.getName = function(){
    20         return this.name;
    21     }
    22     
    23     function Author(name,books){
    24         Author.superClass.constructor.call(this,name);
    25 //        Person.call(this,name);
    26         this.books = books;
    27     }
    28     extend(Author,Person);
    29     Author.prototype.getBooks = function(){
    30         return this.books;
    31     }
    32     
    33     var author = new Author("zap","javascript程序设计");
    34     console.log(author);
    35     console.log(author.getName());
    36     console.log(author.getBooks());
  3. 原型式继承-->clone函数:(原型式继承更能节约内存)
     1     var Person  ={
     2         name:"zap",
     3         age:"26",
     4         toString:function(){
     5             console.log(this.name + "@" + this.age); 
     6         }
     7     }
     8     
     9     var author = clone(Person);
    10     author.name = "zap";
    11     author.toString();
    12     
    13     function clone(object){
    14         function F(){}
    15         F.prototype = object;
    16         return new F;
    17     }

     附上以类式继承实现的就地编辑demo,原型式方式实现和类式继承方式相差无几,不在此列举。

      1 <!DOCTYPE html>
      2 <html>
      3     <head>
      4         <meta charset="UTF-8">
      5         <title>类式继承解决方案</title>
      6         <style type="text/css">
      7             #doc{width:500px; height:300px; border:1px solid #ccc; margin:10px auto;}
      8         </style>
      9     </head>
     10     <body>
     11         <div id="doc"></div>
     12     </body>
     13 </html>
     14 <script type="text/javascript">
     15     
     16     function EditInPlaceField(id,parent,value){
     17         this.id = id;
     18         this.value = value || "default value";
     19         this.parentElement = parent;
     20         
     21         this.createElements(this.id);
     22         this.attachEvents();
     23     }
     24     
     25     EditInPlaceField.prototype = {
     26         createElements:function(id){
     27             this.createContainer();
     28             this.createShowPanel();
     29             this.createEnterPanel();
     30             this.createControlBtns();
     31             this.convertToText();
     32         },
     33          //创建容器
     34         createContainer:function(){
     35             this.containerElement = document.createElement("div");
     36             this.parentElement.appendChild(this.containerElement);
     37         },
     38         createShowPanel:function(){
     39             this.staticElement = document.createElement("span");
     40             this.containerElement.appendChild(this.staticElement);
     41             this.staticElement.innerHTML  = this.value;
     42         },
     43         createEnterPanel:function(){
     44             this.fieldElement = document.createElement("input");
     45             this.fieldElement.type = "text";
     46             this.fieldElement.value = this.value;
     47             this.containerElement.appendChild(this.fieldElement);
     48         },
     49         createControlBtns:function(){
     50             this.saveButton = document.createElement("input");
     51             this.saveButton.type = "button";
     52             this.saveButton.value = "Save";
     53             this.containerElement.appendChild(this.saveButton);
     54             
     55             
     56             this.cancelButton = document.createElement("input");
     57             this.cancelButton.type = "button";
     58             this.cancelButton.value = "Cancel";
     59             this.containerElement.appendChild(this.cancelButton);
     60         },
     61         attachEvents:function(){
     62             var that = this;
     63             addEvent(this.staticElement,"click",function(){that.convertToEditable();});
     64             addEvent(this.saveButton,"click",function(){that.save();});
     65             addEvent(this.cancelButton,"click",function(){that.cancel();});
     66         },
     67         convertToEditable:function(){
     68             this.staticElement.style.display = "none";
     69             this.fieldElement.style.display = "inline";
     70             this.saveButton.style.display = "inline";
     71             this.cancelButton.style.display = "inline";
     72             
     73             this.setValue(this.value);
     74         },    
     75         save:function(){
     76             this.value = this.getValue();
     77             var that = this;
     78             var callback = {
     79                 success:function(){
     80                     that.convertToText();
     81                 },
     82                 failure:function(){
     83                     alert("Error saving value.");
     84                 }
     85             };
     86             
     87             ajaxRequest("get","save.php?id=",callback);
     88         },
     89         cancel:function(){
     90             this.convertToText();
     91         },
     92         convertToText:function(){
     93             this.fieldElement.style.display = "none";
     94             this.saveButton.style.display = "none";
     95             this.cancelButton.style.display = "none";
     96             this.staticElement.style.display = "inline";
     97             
     98             this.setValue(this.value);
     99         },
    100         setValue:function(value){
    101             this.fieldElement.value = value;
    102             this.staticElement.innerHTML = value;
    103         },
    104         getValue:function(){
    105             return this.fieldElement.value;
    106         }
    107     }
    108     
    109     //事件绑定
    110     function addEvent(element,type,fn){
    111         if(element.addEventListener){
    112             element.addEventListener(type,fn,false);
    113         }else if(element.attachEvent){
    114             element.attachEvent("on" + type,fn);
    115         }else{
    116             element["on" + type] = fn;
    117         }
    118     }
    119     //ajax请求
    120     function ajaxRequest(type,url,callback){
    121         callback.success();
    122     }
    123     //extend
    124     function extend(subClass,superClass){
    125         var F = function(){};
    126         F.prototype = superClass.prototype;
    127         subClass.prototype = new F();
    128         subClass.prototype.constructor = subClass;
    129         
    130         subClass.superClass = superClass.prototype;
    131         if(superClass.prototype.constructor == Object.prototype.constructor){
    132             superClass.prototype.constructor =  superClass;
    133         }
    134     }
    135     
    136     //子类
    137     function EditInPlaceArea(id,parent,value){
    138         EditInPlaceArea.superClass.constructor.call(this,id,parent,value);
    139     };
    140     extend(EditInPlaceArea,EditInPlaceField);
    141     
    142     //override
    143     EditInPlaceArea.prototype.createShowPanel = function() {
    144         this.staticElement = document.createElement("p");
    145         this.containerElement.appendChild(this.staticElement);
    146         this.staticElement.innerHTML = this.value;
    147     }
    148     
    149     EditInPlaceArea.prototype.createEnterPanel = function(){
    150         this.fieldElement =document.createElement("textarea");
    151         this.fieldElement.value = this.value;
    152         this.containerElement.appendChild(this.fieldElement);
    153     }
    154     
    155     EditInPlaceArea.prototype.convertToEditable = function(){
    156         this.staticElement.style.display = "none";
    157         this.fieldElement.style.display = "block";
    158         this.saveButton.style.display = "inline";
    159         this.cancelButton.style.display = "inline";
    160         
    161         this.setValue(this.value);
    162     }
    163     
    164     EditInPlaceArea.prototype.convertToText = function(){
    165         this.fieldElement.style.display = "none";
    166         this.saveButton.style.display = "none";
    167         this.cancelButton.style.display = "none";
    168         this.staticElement.style.display = "block";
    169         this.setValue(this.value);
    170     }
    171     
    172     var titleClassical = new EditInPlaceArea("titleClassical",document.getElementById("doc"),"title here");
    173     
    174 </script>
    View Code

     

转载于:https://www.cnblogs.com/tengri/p/5271952.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/458197.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

GIS基础软件及操作(二)

原文 GIS基础软件及操作(二) 练习二、管理地理空间数据库 1.利用ArcCatalog 管理地理空间数据库 2.在ArcMap中编辑属性数据 第1步 启动 ArcCatalog 打开一个地理数据库 当 ArcCatalog打开后&#xff0c;点击, 按钮&#xff08;连接到文件夹&#xff09;. 建立到包含练习数据的…

libSVM分类小例C++

from&#xff1a;http://www.doczj.com/list_31/ 使用libSVM求解分类问题的C小例 1.libSVM简介 训练模型的结构体 struct svm_problem//储存参加计算的所有样本 { int l; //记录样本总数 double *y; //指向样本类别的组数 //prob.y new double[prob.l]; struct svm_node …

qunit 前端脚本测试用例

首先引用qunit 测试框架文件 <link rel"stylesheet" href"qunit-1.22.0.css"> <script src"qunit-1.22.0.js"></script> <div id"qunit"></div> <div id"qunit-fixture"></div>…

非常规文件名删除

生活中我们偶尔会遇到这样一件事&#xff1a;走在路上&#xff0c;突然感觉鞋底有东西&#xff0c;抬脚一看&#xff0c;是个泡泡糖。拿不掉&#xff0c;走路还一粘一粘的。要多难受有多难受&#xff01;同样在linux中也有这么一种文件名。看着不舒服&#xff0c;却删不掉。今天…

Machine Learning(Stanford)| 斯坦福大学机(吴恩达)器学习笔记【汇总】

from&#xff1a;https://blog.csdn.net/m399498400/article/details/52556168 定义本课程常用符号 训练数据&#xff1a;机器用来学习的数据 测试数据&#xff1a;用来考察机器学习效果的数据&#xff0c;相当于考试。 m 训练样本的数量&#xff08;训练集的个数) x 输入的…

模板匹配算法

from&#xff1a;https://blog.csdn.net/zhi_neng_zhi_fu/article/details/51029864 模板匹配(Template Matching)算法 模板匹配&#xff08;Template Matching&#xff09;是图像识别中最具代表性的方法之一。它从待识别图像中提取若干特征向量与模板对应的特征向量进行比较…

立体匹配十大概念综述---立体匹配算法介绍

from&#xff1a;https://blog.csdn.net/wintergeng/article/details/51049596 一、概念 立体匹配算法主要是通过建立一个能量代价函数&#xff0c;通过此能量代价函数最小化来估计像素点视差值。立体匹配算法的实质就是一个最优化求解问题&#xff0c;通过建立合理的能量函数…

zjnu1730 PIRAMIDA(字符串,模拟)

Description Sample Input 6 JANJETINA 5 1 J 1 A 6 N 6 I 5 E Sample Output 1 0 2 1 1题意&#xff1a;给你一个长度小于等于10^6的字符串&#xff0c;然后每次让它循环铺盖&#xff0c;构成层数为n的塔&#xff0c;让你求得第i层塔中某个字符的个数。 思路&#xff1a;首先要…

ICP算法理解

from&#xff1a;https://blog.csdn.net/linear_luo/article/details/52576082 1 经典ICP ICP的目的很简单&#xff0c;就是求解两堆点云之间的变换关系。怎么做呢&#xff1f;思路很自然&#xff0c;既然不知道R和t(针对刚体运动)&#xff0c;那我们就假设为未知量呗&#xf…

图像处理的灰度化和二值化

from&#xff1a;http://blog.sina.com.cn/s/blog_13c6397540102wqtt.html 在图像处理中&#xff0c;用RGB三个分量&#xff08;R&#xff1a;Red&#xff0c;G&#xff1a;Green&#xff0c;B&#xff1a;Blue&#xff09;&#xff0c;即红、绿、蓝三原色来表示真彩色&#x…

获取子元素

1、纯css 获取子元素 #test1>div {background-color:red;}#test1 div {font-size:14px;}#test1>div:first-child {color:#ccc;} <div id"test1"><div>性别</div><div>男</div></div> 因1示例中为#test1下的子元素 #test1…

44.Android之Shape设置虚线、圆角和渐变学习

Shape在Android中设定各种形状&#xff0c;今天记录下&#xff0c;由于比较简单直接贴代码。 Shape子属性简单说明一下:   gradient -- 对应颜色渐变。 startcolor、endcolor就不多说了。 android:angle是指从哪个角度开始变.solid -- 填充。stroke -- 描边。corners -- 圆角…

几种边缘检测算子的比较Roberts,Sobel,Prewitt,LOG,Canny

from&#xff1a;https://blog.csdn.net/gdut2015go/article/details/46779251 边缘检测是图像处理和计算机视觉中的基本问题&#xff0c;边缘检测的目的是标识数字图像中亮度变化明显的点。图像属性中的显著变化通常反映了属性的重要事件和变化。这些包括&#xff1a;深度上的…

django 初试

/*************************************************************************************** django 初试* 说明&#xff1a;* 昨天打搭了dgango的服务器&#xff0c;今天学一下怎么来输出一个hello world出来。* * …

浅析“高斯白噪声”,“泊松噪声”,“椒盐噪声”的区别

from&#xff1a;https://www.jianshu.com/p/67f909f3d0ce 在图像处理的过程中&#xff0c;一般情况下都进行图像增强&#xff0c;图像增强主要包括“空域增强”和“频域增强”&#xff0c; 空域增强包括平滑滤波和锐化滤波。 平滑滤波&#xff0c;就是将图像模糊处理&#x…

Java 开发环境部署

1.下载Java开发环境工具包JDK&#xff0c;下载地址&#xff1a;http://www.oracle.com/technetwork/java/javase/downloads/index.html 下载后&#xff0c;双击jdk应用程序&#xff0c;根据提示完成安装&#xff0c;安装过程中可以自定义安装目录等信息&#xff0c;这里我选择…

枚举enum、NS_ENUM 、NS_OPTIONS

2019独角兽企业重金招聘Python工程师标准>>> enum 了解位移枚举之前&#xff0c;我们先回顾一下C语言位运算符。 1 << : 左移,比如1<<n,表示1往左移n位&#xff0c;即数值大小2的n次方; 例如 : 0b0001 << 1 变为了 0b0010 2 >> : 右…

数字图像处理-频率域滤波原理

from&#xff1a;https://blog.csdn.net/forrest02/article/details/55510711?locationNum15&fps1 写在前面的话 作者是一名在读的硕士研究僧&#xff0c;方向是图像处理。由于图像处理是一门相对复杂的学科&#xff0c;作者在课堂上学到的东西只是非常浅显的内容&#…

深入浅出的讲解傅里叶变换(真正的通俗易懂)

原文出处&#xff1a; 韩昊 1 2 3 4 5 6 7 8 9 10 作 者&#xff1a;韩 昊 知 乎&#xff1a;Heinrich 微 博&#xff1a;花生油工人 知乎专栏&#xff1a;与时间无关的故事 谨以此文献给大连海事大学的吴楠老师&#xff0c;柳晓鸣老师&#xff0c;王新年老师以及张晶泊老…

IIS(1)

转载&#xff1a;http://blog.csdn.net/ce123 IIS音频总线学习&#xff08;一&#xff09;数字音频技术 一、声音的基本概念 声音是通过一定介质传播的连续的波。 图1 声波重要指标&#xff1a; 振幅&#xff1a;音量的大小周期&#xff1a;重复出现的时间间隔频率&#xff1a;…