Java Constructor In Hindi


Constructor special methods होते हैं जो कुछ भी return नहीं करते हैं। मतलब constructor without return statement define किये जाते हैं। जब किसी class का Object बनाते हैं तो Constructor automatically run होता है।

इसे run करने के लिए call करने जरूरत नहीं पड़ती है। लेकिन अगर Class का Object नहीं बना तो Constructor method run नहीं होगा।

हालाँकि किसी भी class के लिए constructor define करना optional होता है। आप अपनी need के according define कर सकते हैं। हाँ , अगर किसी class में constructor नहीं होता है तो java compiler automatically empty body के साथ एक constructor create करता है।

Java define constructor

java में constructor को class name के साथ ही define किया जाता है , जो class का name होगा वही constructor का name रखना पड़ेगा। हाँ इसमें define किये गए parameters को need के according कम या ज्यादा कर सकते हैं।

Java constructor exmaple

public class A { // define default constructor. A() { System.out.println("Default Constructor"); } public static void main(String[] args) { // now just create an Object. A a = new A(); } }
Output
Default Constructor

Rules to define constructor in Java

  1. class name और constructor name same होना चाहिए।

  2. constructor का कोई return type होना चाहिए और न ही कोई value return करना चाहिए।

  3. Java programming language में कोई भी constructor abstract, static, final, और synchronized नहीं हो सकता है।

Constructor can have access modifiers

हाँ , constructor define करते समय आप access modifiers का use कर सकते हैं , मतलब constructor को आप private , protected, public और default define कर सकते हैं।

ऊपर जो example दिया गया है वो default constructor का example ही है।

Java Parameterized Constructor

जैसा कि आपने ऊपर पढ़ा कि constructor में आप parameters भी define कर सकते हैं। इस case में फिर आपको class object बनाते समय class name में वो parameters pass करने पडेगे।

public class A { // define parameterized constructor. A(String name, int age) { System.out.println("Name : "+ name); System.out.println("Age : "+ age); } public static void main(String[] args) { // now just create an Object and pass arguments. A a = new A("Rahul", 25); // you can pass diff values for diff objects A a2 = new A("Anuj", 60); } }
Output
Name : Rahul
Age : 25
Name : Anuj
Age : 60

Java Constructor Overloading

जैसा कि आपने पढ़ा कि constructor without return type के method की तरह ही है। तो java methods की तरह ही आप constructors overloading कर सकते हैं।

किसी भी java class में एक से ज्यादा constructors हो सकते हैं। किसी class में एक से ज्यादा constructors को different - different parameters के साथ define करना ही different overloading कहलाता है।

code execute करते समय compiler pass किये गए arguments से decide करता है कि कौन सा compiler call करना है।

Java Constructor Overloading Example

public class A { // ddefault constructor with no parameters. A() { System.out.println("Default Constructor"); } // parameterized constructor A(String name) { System.out.println("Name : "+ name); } // another parameterized constructor A(String name, int age) { System.out.println("Name : "+ name + ", Age : "+ age); } public static void main(String[] args) { // create object without argument. A a1 = new A(); // now pass value. A a2 = new A("Rahul"); A a3 = new A("Anuj", 60); } }
Output
Default Constructor
Name : Rahul
Name : Anuj, Age : 60

I Hope, अब आप Java में constructor के बारे में अच्छे से समझ गए होंगे।

Hey ! I'm Rahul founder of learnhindituts.com. Working in IT industry more than 4.5 years. I love to talk about programming as well as writing technical tutorials and blogs that can help to others .... keep learning :)

Get connected with me - LinkedIn Twitter Instagram Facebook