eguruchela

this कीवर्ड क्या होता है ?


उत्तर:

जावा में this कीवर्ड किसी मेथड या कंस्ट्रक्टर में मौजूदा ऑब्जेक्ट को संदर्भित करता है।

यह एक ही नाम के साथ क्लास एट्रिब्यूट और पैरामीटर्स के बीच भ्रम को खत्म करने के लिए है ।

this कीवर्ड का उपयोग इस प्रकार किया जा सकता है:

1. to get the current object.

2. to invoke current object's method.

3. to invoke current class constructor.

4. to return the current object from the method.

5. this can be passed as a parameter to a method call.

6. this can be passed as a parameter to a constructor.

👈       👉