このメソッドは作者が独自に作成したものではありません。先人の意見をもとにまとめて、シンプルで実用的な JavaScript の継承メソッドを考え出しただけです。
従来の JavaScript の継承はプロトタイプのプロトタイプ チェーンに基づいており、多数の新しい操作を使用する必要があります。コードは十分に簡潔ではなく、可読性もあまり高くなく、プロトタイプ チェーン汚染の影響を受けやすいようです。 。
著者がまとめた継承方法は簡潔かつ明快ですが、最良の方法ではありませんが、読者のインスピレーションになれば幸いです。
さて、これ以上ナンセンスではありません。コードを見てください。コメントが詳細に記載されているので、一目で理解できます~~~
/**
* Created by Yang Yuan on 14-11-11.
* Implement inheritance without using prototype
*
*/
/**
* Javascript object copy, only one layer is copied, and only the function attribute is copied, which is not universal!
* @param obj The object to be copied
* @returns Object
*/
Object.prototype.clone = function(){
var _s = this,
newObj = {};
_s.each(function(key, value){
if(Object.prototype.toString.call(value) === "[object Function]"){
newObj[key] = value;
}
});
return newObj;
};
/**
* Traverse all its own attributes of obj
*
* @param callback callback function. The callback will contain two parameters: key attribute name, value attribute value
*/
Object.prototype.each = function(callback){
var key = "",
_this = this;
for (key in _this){
if(Object.prototype.hasOwnProperty.call(_this, key)){
callback(key, _this[key]);
}
}
};
/**
* Create subclass
* @param ext obj, contains methods that need to be rewritten or extended.
* @returns Object
*/
Object.prototype.extend = function(ext){
var child = this.clone();
ext.each(function(key, value){
child[key] = value;
});
return child;
};
/**
* Create object (instance)
* @param arguments accepts any number of parameters as the constructor parameter list
* @returns Object
*/
Object.prototype.create = function(){
var obj = this.clone();
if(obj.construct){
obj.construct.apply(obj, arguments);
}
return obj;
};
/**
* Useage Example
* Use this method of inheritance to avoid the cumbersome prototype and new.
* But the current example written by the author can only inherit the function of the parent class (which can be understood as a member method).
* If you want to inherit richer content, please improve the clone method.
*
*
*/
/**
* Animal (parent class)
* @type {{construct: construct, eat: eat}}
*/
var Animal = {
construct: function(name){
this.name = name;
},
eat: function(){
console.log("My name is " this.name ". I can eat!");
}
};
/**
* Bird (subcategory)
* Birds overrides the eat method of the parent class and extends the fly method
* @type {subclass|void}
*/
var Bird = Animal.extend({
eat: function(food){
console.log("My name is " this.name ". I can eat " food "!");
},
fly: function(){
console.log("I can fly!");
}
});
/**
* Create bird instance
* @type {Jim}
*/
var birdJim = Bird.create("Jim"),
birdTom = Bird.create("Tom");
birdJim.eat("worm"); //My name is Jim. I can eat worm!
birdJim.fly(); //I can fly!
birdTom.eat("rice"); //My name is Tom. I can eat rice!
birdTom.fly(); //I can fly!

去掉重复并排序的方法:1、使用“Array.from(new Set(arr))”或者“[…new Set(arr)]”语句,去掉数组中的重复元素,返回去重后的新数组;2、利用sort()对去重数组进行排序,语法“去重数组.sort()”。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于Symbol类型、隐藏属性及全局注册表的相关问题,包括了Symbol类型的描述、Symbol不会隐式转字符串等问题,下面一起来看一下,希望对大家有帮助。

怎么制作文字轮播与图片轮播?大家第一想到的是不是利用js,其实利用纯CSS也能实现文字轮播与图片轮播,下面来看看实现方法,希望对大家有所帮助!

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于对象的构造函数和new操作符,构造函数是所有对象的成员方法中,最早被调用的那个,下面一起来看一下吧,希望对大家有帮助。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于面向对象的相关问题,包括了属性描述符、数据描述符、存取描述符等等内容,下面一起来看一下,希望对大家有帮助。

方法:1、利用“点击元素对象.unbind("click");”方法,该方法可以移除被选元素的事件处理程序;2、利用“点击元素对象.off("click");”方法,该方法可以移除通过on()方法添加的事件处理程序。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于BOM操作的相关问题,包括了window对象的常见事件、JavaScript执行机制等等相关内容,下面一起来看一下,希望对大家有帮助。

foreach不是es6的方法。foreach是es3中一个遍历数组的方法,可以调用数组的每个元素,并将元素传给回调函数进行处理,语法“array.forEach(function(当前元素,索引,数组){...})”;该方法不处理空数组。


ホットAIツール

Undresser.AI Undress
リアルなヌード写真を作成する AI 搭載アプリ

AI Clothes Remover
写真から衣服を削除するオンライン AI ツール。

Undress AI Tool
脱衣画像を無料で

Clothoff.io
AI衣類リムーバー

AI Hentai Generator
AIヘンタイを無料で生成します。

人気の記事

ホットツール

MantisBT
Mantis は、製品の欠陥追跡を支援するために設計された、導入が簡単な Web ベースの欠陥追跡ツールです。 PHP、MySQL、Web サーバーが必要です。デモおよびホスティング サービスをチェックしてください。

VSCode Windows 64 ビットのダウンロード
Microsoft によって発売された無料で強力な IDE エディター

Dreamweaver Mac版
ビジュアル Web 開発ツール

SublimeText3 英語版
推奨: Win バージョン、コードプロンプトをサポート!

メモ帳++7.3.1
使いやすく無料のコードエディター
