面向对象

面向对象思想的几个重要特征(针对类的要求):

抽象-封装、信息隐藏(将内部实现的方法和数据隐藏, 定义开放的接口)

继承-子类可以使用父类的资源,并可以定制自己的资源, 资源包括方法和数据

多态-重载(同名函数)、覆盖(继承的基础上重写父类函数)

JS与面向对象

javascript使用prototype实现类的继承功能, 非经典面向对象语言的类的形式, 使用方法也不同, 导致使用较困难。

请参考大师的《深入理解javascript原型和闭包系列http://www.cnblogs.com/wangfupeng1988/p/4001284.html

于是各种库都提供了自己实现类库, 例如:

1、 jquery class create: https://github.com/protonet/jquery-class-create

使用Class.Create创建实用类, 即实例的构造函数, 其缺点是用来jquery库

// properties are directly passed to `create` method
var Person = Class.create({
initialize: function(name) {
this.name = name;
},
say: function(message) {
return this.name + ': ' + message;
}
}); // when subclassing, specify the class you want to inherit from
var Pirate = Class.create(Person, {
// redefine the speak method
say: function($super, message) {
return $super(message) + ', yarr!';
}
}); var john = new Pirate('Long John');
john.say('ahoy matey');
// -> "Long John: ahoy matey, yarr!"

2、 prototypejs :  http://prototypejs.org/learn/class-inheritance

作为prototypejs库的一个功能提供, 使用上跟jquery class create接口一致。

此库还提供, ajax和DOM优雅的接口, 消灭客户端开发的复杂性。

这两个库 要么依赖其他库, 要么自身库功能繁杂, 体积都大, 故单独使用的需求不满足。

本文介绍一个不依赖任何库、且实现上只包括类继承的库,  这位大神开发的独立库: John Resig http://ejohn.org/

Simple JavaScript Inheritance

Simple JavaScript Inheritance

此库的官网为

http://ejohn.org/blog/simple-javascript-inheritance/

作者的目标是 简单-容易被人理解, 可重用-不依赖其他库, 使用例子:

    var Person = Class.extend({

      init: function(isDancing){

        this.dancing = isDancing;

      },

      dance: function(){

        return this.dancing;

      }

    });

    var Ninja = Person.extend({

      init: function(){

        this._super( false );

      },

      dance: function(){

        // Call the inherited version of dance()

        return this._super();

      },

      swingSword: function(){

        return true;

      }

    });

    var p = new Person(true);

    p.dance(); // => true

    var n = new Ninja();

    n.dance(); // => false

    n.swingSword(); // => true

    // Should all be true

    p instanceof Person && p instanceof Class &&

    n instanceof Ninja && n instanceof Person && n instanceof Class

实现说明:

1、 创建构造函数必须简单, 构造函数只提供 init初始化方法。

2、 创建新类,必须扩展一个存在的类, 调用extend。

3、 所有的继承与唯一的祖先 Class。 创建的新类必须是Class的子类。

4、 子类中访问父类的同名方法(即被覆盖)必须提供。 通过this.super子类同名方法中调用父类同名方法。

实现要点

实现代码:

    /* Simple JavaScript Inheritance

    * By John Resig http://ejohn.org/

    * MIT Licensed.

    */

    // Inspired by base2 and Prototype

    (function(){

      var initializing = false, fnTest = /xyz/.test(function(){xyz;}) ? /\b_super\b/ : /.*/;

      // The base Class implementation (does nothing)

      this.Class = function(){};

      // Create a new Class that inherits from this class

      Class.extend = function(prop) {

        var _super = this.prototype;

        // Instantiate a base class (but only create the instance,

        // don't run the init constructor)

        initializing = true;

        var prototype = new this();

        initializing = false;

        // Copy the properties over onto the new prototype

        for (var name in prop) {

          // Check if we're overwriting an existing function

          prototype[name] = typeof prop[name] == "function" &&

            typeof _super[name] == "function" && fnTest.test(prop[name]) ?

            (function(name, fn){

              return function() {

                var tmp = this._super;

                // Add a new ._super() method that is the same method

                // but on the super-class

                this._super = _super[name];

                // The method only need to be bound temporarily, so we

                // remove it when we're done executing

                var ret = fn.apply(this, arguments);       

                this._super = tmp;

                return ret;

              };

            })(name, prop[name]) :

            prop[name];

        }

        // The dummy class constructor

        function Class() {

          // All construction is actually done in the init method

          if ( !initializing && this.init )

            this.init.apply(this, arguments);

        }

        // Populate our constructed prototype object

        Class.prototype = prototype;

        // Enforce the constructor to be what we expect

        Class.prototype.constructor = Class;

        // And make this class extendable

        Class.extend = arguments.callee;

        return Class;

      };

    })();

要点:

1、初始化调用 xx.extend{init:function(){}} 中的 init执行初始化

    // The dummy class constructor

    function Class() {

      // All construction is actually done in the init method

      if ( !initializing && this.init )

        this.init.apply(this, arguments);

    }

2、 子类通过 this._super 访问父类的同名函数, 例如:

    var Person = Class.extend({

      init: function(isDancing){

        this.dancing = isDancing;

      }

    });

    var Ninja = Person.extend({

      init: function(){

        this._super( false );

      }

    });

    var p = new Person(true);

    p.dancing; // => true

    var n = new Ninja();

    n.dancing; // => false

如下, 将儿子有此函数, 父亲也有此同名函数时候, 此函数中记录函数地址到this._super中。

      // Check if we're overwriting an existing function

      prototype[name] = typeof prop[name] == "function" &&

        typeof _super[name] == "function" && fnTest.test(prop[name]) ?

        (function(name, fn){

          return function() {

            var tmp = this._super;

            // Add a new ._super() method that is the same method

            // but on the super-class

            this._super = _super[name];

            // The method only need to be bound temporarily, so we

            // remove it when we're done executing

            var ret = fn.apply(this, arguments);       

            this._super = tmp;

            return ret;

          };

        })(name, prop[name]) :

        prop[name];

    }

Simple JavaScript Inheritance--一个极简JS面向对象-类库的更多相关文章

  1. Vue.js 入门:从零开始做一个极简 To-Do 应用

    Vue.js 入门:从零开始做一个极简 To-Do 应用 写作时间:2019-12-10版本信息:Vue.js 2.6.10官网文档:https://cn.vuejs.org/ 前言  学习 Vue ...

  2. Spring Boot(5)一个极简且完整的后台框架

    https://blog.csdn.net/daleiwang/article/details/75007588 Spring Boot(5)一个极简且完整的后台框架 2017年07月12日 11:3 ...

  3. Join Resig's “Simple JavaScript Inheritance ”

    ======================Enein翻译=========================           John Resig 写了一篇关于 JavaScript 里类似其它语 ...

  4. 借助腾讯云的云函数实现一个极简的API网关

    借助腾讯云的云函数实现一个极简的API网关 Intro 微信小程序的域名需要备案,但是没有大陆的服务器,而且觉得备案有些繁琐,起初做的小程序都有点想要放弃了,后来了解到腾讯云的云函数,于是利用腾讯云的 ...

  5. RELabel : 一个极简的正则表达式匹配和展示框架

    html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,bi ...

  6. Simple JavaScript Inheritance(John Resig)

    I’ve been doing a lot of work, lately, with JavaScript inheritance – namely for my work-in-progress ...

  7. Simple JavaScript Inheritance

    1. [代码]Simple JavaScript Inheritance     (function(){  var initializing = false, fnTest = /xyz/.test ...

  8. 我喜欢的两个js类实现方式 现在再加上一个 极简主义法

    闭包实现 变量是不会变的:) var myApplication = function(){ var name = 'Yuri'; var age = '34'; var status = 'sing ...

  9. 【转】手摸手,带你用vue撸后台 系列四(vueAdmin 一个极简的后台基础模板)

    前言 做这个 vueAdmin-template 的主要原因是: vue-element-admin 这个项目的初衷是一个vue的管理后台集成方案,把平时用到的一些组件或者经验分享给大家,同时它也在不 ...

随机推荐

  1. iOS单例的作用和使用

    单例 单例模式的意思就是只有一个实例.单例模式确保某一个类只有一个实例,而且自行实例化并向整个系统提供这个实例.这个类称为单例类. 一是某个类只能有一个实例:二是它必须自行创建这个实例:三是它必须自行 ...

  2. Java_CookieUtil

    package com.willow.util; import javax.servlet.http.Cookie; import javax.servlet.http.HttpServletRequ ...

  3. ios面试(2015.10.30)

    今天去深圳市丰泰瑞达实业有限公司面试,面试分为笔试和面试两部分,结果非常不理想,不过学到很多.面试题记录如下: 1.tableview的三个常用方法的实现 - (NSInteger)numberOfS ...

  4. 通过串口设备vid,pid自动获得该设备所对应的串口号

    用C#做串口通讯很方便,因为dotfx2.0已经集成了Serial Port控件,此控件使用上比MSComm控件更简单,当然它也有一个小bug (RecievedBytesThreshold设置有时候 ...

  5. (转载)String.IsNullorEmpty()方法的使用

    using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.UI ...

  6. 二分查找算法(JAVA)

    1.二分查找又称折半查找,它是一种效率较高的查找方法. 2.二分查找要求:(1)必须采用顺序存储结构 (2).必须按关键字大小有序排列 3.原理:将数组分为三部分,依次是中值(所谓的中值就是数组中间位 ...

  7. HTML静态网页 css样式表

    CSS(Cascading Style Sheet,叠层样式表),作用是美化HTML网页. /*注释区域*/    此为注释语法 一.样式表 (一)样式表的分类 1.内联样式表 和HTML联合显示,控 ...

  8. 20145334 《Java程序设计》第10周学习总结

    20145334 <Java程序设计>第10周学习总结 教材学习内容总结 一.网络编程 •网络编程对于很多的初学者来说,都是很向往的一种编程技能,但是很多的初学者却因为很长一段时间无法进入 ...

  9. Bootstrap 固定定位(Affix)

    来自:慕课网 http://www.imooc.com/code/5396 Affix 效果常见的有以下三种: ☑ 顶部固定 ☑ 侧边栏固定 ☑ 底部固定 固定定位--声明式触发固定定位 Affix ...

  10. IOS第一天

    第一天(hello world) 1>UIView所有的控件都继承UIView,倒位置,宽度和高度..UIButton UILable 2>UIViewController .h 是声明属 ...