জাভাস্ক্রিপ্ট উত্তরাধিকার সর্বত্র একটি মুক্ত বিতর্ক মত মনে হচ্ছে। এটিকে "জাভাস্ক্রিপ্ট ভাষার কৌতূহলী ক্ষেত্রে" বলা যেতে পারে।
ধারণাটি হল যে এখানে একটি বেস ক্লাস রয়েছে এবং তারপরে আপনি উত্তরাধিকারের মতো বৈশিষ্ট্য পেতে সম্পূর্ণ বর্গকে প্রসারিত করুন (সম্পূর্ণ নয়, তবে এখনও)।
পুরো ধারণাটি হ'ল প্রোটোটাইপটির অর্থ কী। জন রেসিগের কোডটি (যা jQuery.extend
করে তার কাছাকাছি) একটি কোড অংশ লিখেছিল যতক্ষণ না আমি এটি পেয়েছিলাম না এবং তিনি দাবি করেন যে বেস 2 এবং প্রোটোটাইপ লাইব্রেরি অনুপ্রেরণার উত্স ছিল।
কোডটি এখানে।
/* 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;
};
})();
তিনটি অংশ রয়েছে যা কাজ করছে। প্রথমে আপনি বৈশিষ্ট্যগুলি লুপ করে এগুলি দৃষ্টান্তে যুক্ত করুন। এর পরে, আপনি পরবর্তীতে অবজেক্টে যুক্ত হওয়ার জন্য একটি কনস্ট্রাক্টর তৈরি করেন ow এখন, মূল লাইনগুলি হ'ল:
// Populate our constructed prototype object
Class.prototype = prototype;
// Enforce the constructor to be what we expect
Class.prototype.constructor = Class;
আপনি প্রথমে Class.prototype
পছন্দসই প্রোটোটাইপটি নির্দেশ করুন । এখন, পুরো অবজেক্টটির অর্থ পরিবর্তিত হয়েছে যে আপনাকে লেআউটটিকে তার নিজের কাছে ফিরিয়ে দিতে হবে।
এবং ব্যবহারের উদাহরণ:
var Car = Class.Extend({
setColor: function(clr){
color = clr;
}
});
var volvo = Car.Extend({
getColor: function () {
return color;
}
});
জন রেসিগের পোস্ট দ্বারা জাভাস্ক্রিপ্ট উত্তরাধিকারে এটি সম্পর্কে আরও পড়ুন ।
.extend
অন্তর্নির্মিত নয় তবে প্রায়শই jQuery বা প্রোটোটাইপের মতো লাইব্রেরি দ্বারা সরবরাহ করা হয়।