"यदि कोई कर्मचारी अपना काम अच्छी तरह से करना चाहता है, तो उसे पहले अपने औजारों को तेज करना होगा।" - कन्फ्यूशियस, "द एनालेक्ट्स ऑफ कन्फ्यूशियस। लू लिंगगोंग"
मुखपृष्ठ > प्रोग्रामिंग > जेएस में ओओपी -

जेएस में ओओपी -

2024-11-04 को प्रकाशित
ब्राउज़ करें:543

OOP in JS -

  • जेएस कक्षाएं वाक्यात्मक चीनी की तरह हैं, अन्य दृढ़ता से टाइप की गई भाषाओं की कक्षाओं के समान नहीं हैं।
  • इसे अन्य भाषाओं से आने वाले डेवलपर्स के लिए परिचित बनाने के लिए केवल सिंटैक्स-रैपिंग जोड़ता है।
  • वर्ग पर्दे के पीछे के एक विशेष प्रकार के कार्य हैं, इसलिए इन्हें वर्ग अभिव्यक्ति के साथ-साथ वर्ग घोषणा के रूप में भी लिखा जा सकता है।
## class expression:
const Person = class {
}

## class declaration:
class Person {
  constructor(fName, bYear){
   this.fName = fName;
   this.bYear = bYear;
  }
  calcAge(){
   console.log(2024 - this.bYear);
  }
}

- constructor is a method of this class. Pass values for properties to have in objects created using this fn.
- then set the properties of the object using this.xxx = xxx;
- On using 'new' operator, this constructor will be called automatically and return a new object which will be stored in LHS variable as shown below.
Ex. const ronald = new Person('ronald',1975); // Person { fName: 'ronald', bYear: 1975 }
- Methods are written outside the constructor fn and will be added to the prototype property of the object which can be verified using devConsole.
Ex. ronald.calcAge(); // 49

ronald.__proto__ === Person.prototype; // true

- No commas need to be added while adding multiple methods below the constructor fn inside the class.

## Hence, the above syntax works same as constructor fn syntax but with a familiar syntax of strongly typed class based languages.

## Adding a fn explicitly to the prototype:
Person.prototype.greet = function(){
console.log(`Hey ${this.fName}`);
}
ronald.greet(); // 'Hey ronald'

प्रभाव बिंदु:

  • एफएन घोषणाएं फहराई जाती हैं जबकि कक्षा घोषणाएं नहीं फहराई जाती हैं।
  • साथ ही एफएनएस की तरह प्रथम श्रेणी का नागरिक यानी एफएनएस को पास-पास और वापस किया जा सकता है।
  • कक्षा का मुख्य भाग हमेशा सख्त मोड में निष्पादित होता है चाहे हम सख्त मोड को सक्रिय करें या नहीं।
  • कक्षाएं कम वर्ण शोर के साथ कोड को साफ-सुथरा बनाती हैं, बशर्ते आप जानते हों कि इसे हुड के नीचे कैसे लागू किया जाता है। ** जेएस में विशेषज्ञ बनने के लिए, आपको कक्षाओं की तरह जटिल भाषा कार्यान्वयन विवरण को समझने की आवश्यकता है।

एक्सेसर गुण: गेटर्स और सेटर्स यानी एफएनएस जो मूल्य प्राप्त करते हैं और सेट करते हैं। लेकिन बाहर से, वे अभी भी नियमित संपत्तियों की तरह दिखते हैं।

सामान्य गुणों को डेटा गुण कहा जाता है।

  • गेटर्स और सेटर्स जेएस में सभी ऑब्जेक्ट्स के लिए सामान्य हैं यानी प्रत्येक ऑब्जेक्ट में गेट्टर और सेटर प्रॉपर्टी हो सकती है। इन गेटर-सेटर को एक्सेसर प्रॉपर्टी कहा जाता है, जबकि सामान्य प्रॉपर्टी को डेटा प्रॉपर्टी कहा जाता है।

- गेटर और सेटर एफएनएस हैं जो एक मूल्य प्राप्त करते हैं और सेट करते हैं, बाहर से सामान्य गुणों की तरह दिखते हैं।

const account = {
  owner: 'jonas',
  movements: [200,300,100,500],
  get latest(){
    // will return an array with last value. Hence, use pop to get the value.
    return this.movements.slice(-1).pop();
  },
  set latest(mov){
    this.movements.push(mov);
  }
}

account.latest; // 500
account.latest = 50; 
account.latest; // 50

Just like above, classes also support the getter-setter methods but acccessed like using a property syntax.

These are very useful for data validation.

स्थैतिक तरीके

पूर्व। Array.from() = सरणी जैसी संरचना को सरणी में परिवर्तित करता है।
Array.from(document.querySelector('h1'));
Array.from(document.querySelectorAll('h1'));

पूर्व। .from ऐरे कंस्ट्रक्टर से जुड़ा है, कंस्ट्रक्टर की प्रोटोटाइप प्रॉपर्टी से नहीं। इसलिए सभी सरणियों को यह fn विरासत में नहीं मिलता है।
[1,2,3].से(); // .from कोई फ़ंक्शन नहीं है

पूर्व। Number.parseFloat(12) नंबर कंस्ट्रक्टर पर एक स्थिर विधि है, जो नंबर वेरिएबल्स पर उपलब्ध नहीं है।

एक स्थैतिक विधि बनाना.

// Static methods are not inherited. They are not added to prototype.
className.fnName = function(){
  console.log(this); // Entire constructor() which is calling the method
  console.log("JS is awesome")
};
className.fnName();

// Rule =  whatever object is calling the method, 'this' points to that object inside the fn. Hence its simply the entire constructor() above.

//Inside class, we need to use static keyword for adding a static method.
static fnName = function(){
  console.log(this); // can point to the entire class defn
  console.log("JS is awesome")
};

// Static methods and instance methods will be different from each other.
// instance methods will be prototype, hence all instances can have access to them

ऑब्जेक्ट.क्रिएट():

हमारे ऑब्जेक्ट का प्रोटोटाइप किसी भी ऑब्जेक्ट पर सेट करने के लिए मैन्युअल रूप से उपयोग किया जाता है जिसे हम चाहते हैं।
इनहेरिटेंस बी/डब्ल्यू कक्षाओं को लागू करने के लिए उपयोग किया जाएगा।
इस fn का उपयोग करके प्रोटोटाइप इनहेरिटेंस कार्यान्वित किया गया।
ऑब्जेक्ट.क्रिएट एक खाली ऑब्जेक्ट लौटाता है।
एक अलग तरीके से काम करता है जिसमें कंस्ट्रक्टर एफएनएस और क्लासेस काम करते हैं।
अभी भी 'प्रोटोटाइप', 'कन्स्ट्रक्टर()', 'नए' ऑपरेटर की भागीदारी के बिना भी प्रोटोटाइप इनहेरिटेंस का विचार है।

const PersonProto = {
  // This method will be looked up using __proto__ link
  calcAge(){
    console.log(2024 - this.bYear);
  }
};

// baba will be created, with its prototype set to PersonProto object.
const baba = Object.create(PersonProto);
baba;

baba.name = 'Roger';
baba.bYear = '2000';
baba.calcAge();

कन्स्ट्रक्टर एफएन --(.प्रोटोटाइप)--> पर्सन.प्रोटोटाइप
ऑब्जेक्ट इंस्टेंस --(प्रोटो)--> पर्सन.प्रोटोटाइप

ठीक वैसे ही काम करता है जैसे यह एफएन कंस्ट्रक्टरों या कक्षाओं में काम करता है
इस लक्ष्य को प्राप्त करने के लिए कंस्ट्रक्टर() या .प्रोटोटाइप प्रॉपर्टी की कोई आवश्यकता नहीं है।

const PersonProto = {
  // This method will be looked up using __proto__ link
  calcAge(){
    console.log(2024 - this.bYear);
  },
  // Noting special with init name, its a normal fn here.
  // This has nothing to with ES6 constructor()
  // Manual way of initialzing an object.
  init(fName, bYear){
    this.fName = fName;
    this.bYear = bYear;
  }
};

// baba will be created, with its prototype set to PersonProto object.
const baba = Object.create(PersonProto);
baba;

baba.name = 'Roger';
baba.bYear = '2000';
baba.calcAge();

baba.__proto__;    // { calcAge: [Function: calcAge] }
baba.__proto__ === PersonProto; //true


const alice = Object.create(PersonProto);
alice.init("alice", 2000);
alice;   // { fName: 'alice', bYear: 2000 }  

प्रोटोटाइपल इनहेरिटेंस बनाने के तरीके:
कंस्ट्रक्टर एफएन
ES6 कक्षाएं
ऑब्जेक्ट.क्रिएट

कंस्ट्रक्टर() का उपयोग करके कक्षाओं के बीच वंशानुक्रम:

ये सभी तकनीकें ऑब्जेक्ट को उसके प्रोटोटाइप पर तरीकों को देखने की अनुमति देती हैं।
जेएस में वास्तविक कक्षाएं मौजूद नहीं हैं।

const Person = function(firstName, bYear){
  this.firstName = firstName;
  this.bYear = bYear;
};

Person.prototype.calcAge = function(){
  console.log(2024 - this.bYear);
};

const Student = function(firstName, bYear, course){
  // This is the duplicate code, any change in Person won't be reflected here.
  this.firstName = firstName;
  this.bYear = bYear;
  this.course = course;
};

Student.prototype.introduce = function(){
  console.log(`My name is ${this.firstName} and I study ${this.course}`);
}

const matt = new Student("Matt", 2000, "CSE");
matt.introduce(); //  'My name is Matt and I study CSE'

उपरोक्त उदाहरण से अनावश्यक कोड हटाना:

const Person = function(firstName, bYear){
  this.firstName = firstName;
  this.bYear = bYear;
};

Person.prototype.calcAge = function(){
  console.log(2024 - this.bYear);
};

const Student = function(firstName, bYear, course){
  // Person(firstName, bYear); -> This doesn't work because we are calling it as a regular fn call. 'new' has to be used to call this fn constructor. This fn call is simply a regular fn call, in which 'this' is set 'undefined'. Hence, an error as it cannot set firstName on undefined.
  // We want to set the 'this' inside this fn to be same as inside Person above.
  Person.call(this, firstName, bYear);
  this.course = course;
};

Student.prototype.introduce = function(){
  console.log(`My name is ${this.firstName} and I study ${this.course}`);
}

const matt = new Student("Matt", 2000, "CSE");
matt.introduce(); //  'My name is Matt and I study CSE'

'new' स्वचालित रूप से ऑब्जेक्ट इंस्टेंस और उसके प्रोटोटाइप के बीच proto
के माध्यम से एक लिंक बनाता है। वंशानुक्रम का संपूर्ण विचार यह है कि बाल वर्ग मूल वर्गों से प्रोटोटाइप श्रृंखला तक व्यवहार साझा कर सकता है।
प्रोटोटाइप[ऑब्जेक्ट.प्रोटोटाइप] = शून्य; // प्रोटोटाइप श्रृंखला के शीर्ष पर बैठता है।

const Person = function(firstName, bYear){
  this.firstName = firstName;
  this.bYear = bYear;
};

Person.prototype.calcAge = function(){
  console.log(2024 - this.bYear);
};

const Student = function(firstName, bYear, course){
  Person.call(this, firstName, bYear);
  this.course = course;
};

// Student.prototype = Person.prototype; => This doesn't work because we won't get the prototype chain, rather we will get 
// Constructor fn[i.e Person()]    --------------> Person.prototype
// Constructor fn[i.e Student()]   --------------> Person.prototype
// Object [Matt] __proto__: Student.prototype ---> Person.prototype

// Student.prototype manually linked for lookup to Person.prototype.
// This has to be done here and not after else Object.create will overwrite any of the existing methods like introduce() on it.
Student.prototype = Object.create(Person.prototype);

Student.prototype.introduce = function(){
  console.log(`My name is ${this.firstName} and I study ${this.course}`);
}

const matt = new Student("Matt", 2000, "CSE");
matt.introduce(); //  'My name is Matt and I study CSE'
matt.calcAge();    // 24

matt.__proto__;                   // Person { introduce: [Function (anonymous)] }
matt.__proto__.__proto__;        // { calcAge: [Function (anonymous)] }
matt.__proto__.__proto__.__proto__;   // [Object: null prototype] {}

Student.prototype.constructor = Student;   // [Function: Student]

matt instanceof Student; // true
matt instanceof Person; // true
matt instanceof Object; // true
विज्ञप्ति वक्तव्य यह आलेख यहां पुन: प्रस्तुत किया गया है: https://dev.to/mahf001/oops-in-js-22-5a2n?1 यदि कोई उल्लंघन है, तो कृपया इसे हटाने के लिए [email protected] से संपर्क करें।
नवीनतम ट्यूटोरियल अधिक>

चीनी भाषा का अध्ययन करें

अस्वीकरण: उपलब्ध कराए गए सभी संसाधन आंशिक रूप से इंटरनेट से हैं। यदि आपके कॉपीराइट या अन्य अधिकारों और हितों का कोई उल्लंघन होता है, तो कृपया विस्तृत कारण बताएं और कॉपीराइट या अधिकारों और हितों का प्रमाण प्रदान करें और फिर इसे ईमेल पर भेजें: [email protected] हम इसे आपके लिए यथाशीघ्र संभालेंगे।

Copyright© 2022 湘ICP备2022001581号-3