Skip to main content

Chapter - 2 Java Class in Hindi

Java Class in Hindi 

Introduction of java class

कहते हैं, Java में सब कुछ class है। आखिर क्या होती है class? और java में सब कुछ class क्यों है। आइये जानने का प्रयास करते है। 

सबसे पहले में आपको बता दू की class एक type होता है। जैसे की data types होते है। आप class type के भी variables create करते है। फर्क सिर्फ इतना होता है की class type variables objects कहलाते है। Class के द्वारा आप बहुत से variables और functions का group structure create करते है और उन्हें एक नाम से identify करते है। इस structure के base पर कई object create किये जा सकते है।

Class एक entity हैं और उस से related attribute को दर्शाती है। यदि बिना class के आप किसी व्यक्ति के बारे में information store करे या represent करे तो इसके लिए आपको कई variables की आवश्यकता होगी। जैसे की नाम, उम्र, पता और फ़ोन नंबर आदि। 
अब कल्पना कीजिये की आपको 100 व्यक्तियों के बारे में ये information store करनी है। ऐसी situation में आपको 100*4=400 variables create करने होंगे। ये एक बहुत बड़ी समस्या है। इससे बचने के लिए classes को introduce किया गया। Class के माध्यम से आप इन 4 variables का एक type create कर सकते है। और फिर उस type के 100 objects create कर सकते है। Object के माध्यम से आप class के हर variable को access करके value assign कर सकते है। इसका उदाहरण निच दिया जा रहा है। 


class Person{
String name ;
int age;
int phone;
String address;
}


एक java program में कितनी भी classes create की जा सकती है। लेकिन main method सिर्फ एक ही class में One hee होगा। Main method से ही program का execution start होता है।

Advantage of Classes:  

आगे बढ़ने से पहले आइये जान लेते है की classes के क्या advantages होते है।

Security

आपके variables और methods classes में होते है। Classes 3 level का access protection provide करती है। जब तक आप खुद ना चाहे तब तक कोई भी आपके class members को access नहीं कर सकता है।

Reduce complexity

Classes का यूज़ करने से आप variables और methods के बिखराव से बच जाते है। Classes से आपका program simple बन जाता है और उसकी complexity दूर हो जाती है।

Separation

किसी भी program में आपके पास कई प्रकार का data होता है। अलग अलग data पर अलग अलग  trah ke operations perform होते है जो की आप methods के द्वारा perform करते है। Classes का यूज़ करते हुए आप एक type के data और उससे related operations (methods) ko dusre type ke data or use related operations (methods से separate कर सकते है।

ऐसा आप हर तरह के data के लिए अलग से class बनाकर कर सकते है। उस data पर perform and operations (methods) भी आप उसी class में create कर सकते है। इससे आपको program को manage करने में आसानी होती है। जैसे की आप एक class बनाये purchases के बारे में information store करने के लिए और दूसरी class sales की information store करने के लिए बना सकते है।

Focus on data

जब आप classes यूज़ करते है तो program का पूरा focus data पर होता है। आप data के लिए ही methods create करते है और data को ही hide करते है| Classes data focused approach है जो की useful software बनाने के लिए बहुत महत्वपूर्ण है।

Create a 1st class program

Class create करना बहुत ही आसान है इसके लिए आप class keyword का यूज़ करते है। Clas keyword के बाद class का नाम दिया जाता है। यदि आप के program में एक से अधिक classes है तो हर class का नाम unique होना चाहिए। जिस class में main method हो वह class public declare की जानी चाहिए। Class create करने क उदाहरण निचे दिया जा रहा है।


// Example 1:- Create a 1st classs
class Person{
    String name="Shailesh";
    int age= 21;
    int phone= 821062;
    String address="Munger-Bihar-India";

    public void display(){
        System.out.println("Person Name is:"+name);
        System.out.println("Person age is:"+age);
        System.out.println("Person phone is:"+phone);
        System.out.println("Person address is:"+address);
    }
// Main Methods start here:
    public static void main(String args[]){
        Person obj= new Person();
        obj.display();
    }
}


Output Here :- 

Person Name is: Shailesh
Person age is:21
Person phone is:821062
Person address is: Munger-Bihar-India



ऊपर दिए गए उदाहरण में person नाम की एक class create की गयी है। इस class में name और age, phone, and address 4 variables है। इसमें display() नाम से method भी declare किया गया है। Main method में display () method को call किया गया है।

Main method in java

आपके program में एक से अधिक classes हो सकती है लेकिन main method सिर्फ एक ही class में होगा। पुरे program में जँहा main method होता है वही से program का execution start होता है। जिस class में main method होत है उसे public declare करना necessary होता है।

// This is main methods parts

public static void main(String args[]){
        Person obj= new Person();
        obj.display();
    }


Main method को भी हमेशा public declare किया जाना चाहिए। ऐसा करना इसलिए जरुरी है क्योंकि classes में सभी methods by default private होते है। और यदि main method को public declare नहीं किया जाये java run time environment आपके main method को access नहीं कर पायेगा और आपके program का execution start नहीं होगा।

जैसा की आप जानते है class के किसी भी method को access करने के लिए objects की जरुरत होती है। Java run time environment आपके main method को बिना object के access कर सके इसलिए main method को static भी declare किया जाता है।

आइये कुछ necessary terms के बारे में जानने क प्रयास करते है।

Instance variables/methods/functions: 

जो variables और methods class के object से ही access किये जाते है उन्हें instance variables या methods कहा जाता है।

Static variables/methods

Static variables और methods को बिना objects के access किया जा सकता है। किसी भी variable या method को static बनाने के लिए static keyword यूज़ किया जाता है। Static members को access करने के लिए class के नाम के आगे (.) operator लगा कर उस member का नाम लिखा जाता है। if your doubts has not been clear. 

Command line argument

Main method parameters string array होता है। ऐसा command line argument देने के लिए किया गया है। Command line arguments वो arguments होते है जो आप program को run करते समय ही दे सकते है। कई बार ऐसा होता है की आप program run होते समय ही कुछ argument देना चाहते है ताकि आपका program उन arguments के according run हो सके।

I hope Your Doubts has been clear what is class, and where is used. 


Comments

Popular posts from this blog

Assignment of ITA/ Information Technology and Application BCA- Technology369kk

Q1. What is  computer Explain basic computer architecture and Difference components.  2. Discuss the use of memory in computer system, Explain memory hierarchy  in details. 3. What is software? Explain difference types of software with explain. 4. Write short notes on the given:- (I) Internet. (II) LAN (Local area network ) (III) Search engine (IV) Web browser  Q 1.What is computer Explain basic computer architecture, Difference components of computer.   Computer :- Computer is defined as an electronic device that takes input data and instructions from the user and after processing them, it generates useful and desired output quickly.   A computer is designed to execute applications and provides a variety of solutions through integrated hardware and software components.                            It is fast and automatic device. It works with the help of programs and represents the d...

C++ and Java Practical All Questions Answers - BCA -Technology369kk

C++ and Java  In this post see most important questions for practical questions given by college all questions with answers . Guys I want to say that this is only for suggested post for your practical please request to you change same alphabets, words or anything  methods name and variables name because if you write all words same then this is copy paste for another peoples.  Used Topics:  Keywords, Variables, Condition Statements, Function , Array, Structure, Pointer.                           In OOPs, Class and Objects, Constructor, Poly morph, Encapsulation, Access Specifiers,                               Inheritance etc.  So, Without Time Lose Come to the Points, let's go start Now:        *************************************************************************  C++ 12 ...

Assignment of PMO (Principal of Management and Organization) - Technology369kk

 ** Assignment Of PMO ** Agenda: -  4 Questions discuss in this post. Question 1. Write a d etails note on selection why it Called. negative process.  Question 2. Write a details note on 'span of control. Question 3. Planning is an essential process, do you agree ? Discuss  Question 4. Write a note on management function. Q 1. Write a d etails note on selection why it called negative process.  Ans :-  Selection is the process of choosing the most suitable candidates out of the several candidates available.          Selection is a negative process because there may be more rejected then those selected in most of the candidates that is called selection is a negative process. → Selection process has the following steps:-  [ A .] Screening of applicants - Based on the screening of applicants only those candidates. It Called further process of selection. Who are found eligible for the job Standards of the the organization. [ B .] S...