java comments in hindi

जावा कोड को समझने के लिए और इसे अधिक मानव पढ़ने योग्य बनाने के लिए कमेंट्स का उपयोग किया जाता है। कमेंट्स का कोड रखरखाव का उचित उपयोग और बग को आसानी  से डिटेक्ट करता  है। 


क्योकि भविष्य में आपका कोड कोई भी देखे तो आसानी से समझे | 
जावा कमेंट्स को कम्पाइलर और इंटरप्रेटर execute नहीं  करते है |जावा कमेंट्स यह वेरिएबल ,मेथड,क्लास  या कोई भी स्टेटमेंट्स  की जानकारी देता है | 
Types of java comments

  1. Single – line comments
  2. Multi – line comments
  3. Documentation comments

Single – line comments

Single line comments को दो forward slashes (//) से लिखते है | 

   Syntax :-  // single line comments

  Examples:-  //Java program to show single-line comments 
                       class Javae
                     { 
             public static void main(String args[]) 
                 { 
       // Single line comment here 
 System.out.println(“show single line comment”); 
    } 
       } 

Multi-line comments :-
  Multi-line comments का उपयोग कोड के कई लाइन पर कमेंट्स    करने के लिए किया जाता है।
Multi-line comments यह  / * से शुरू होती हैं और * / के साथ end  होती हैं।
  syntax :-     /* 
               multi line  

              comment 



                   */  


 Examples:-     public class MultiLine
                      {  
                     public static void main(String[] args)
                   {  
             
              /*Comment line 1 
                Comment line 2  
               Comment line 3*/


              int a=13;  
          System.out.println(a);  
         }  
   }  

Documentation comments :-

इस प्रकार के कमेंट्स का उपयोग किसी  प्रोजेक्ट सॉफ्टवेयर पैकेज के लिए कोड लिखते समय किया जाता है |
डॉक्यूमेंटशन comment का उपयोग डॉक्यूमेंटशन API बनाने के लिए किया जाता है। डॉक्यूमेंटशन API बनाने के लिए आपको javadoc Tools का उपयोग करना पड़ता है ।
Syntax :-   /**   
              documentation  
             comment 
               */  
Examples:-  /**  Calculator class provides methods to get addition and subtraction of given 2 numbers.*/  

                      public class Calculator
                 {  
          /**  add() methods return addition  numbers*/  

             public static int add(int a, int b)
            {
          return a+b;
            } 
        /**  sub() method returns subtraction  numbers.*/  
          public static int sub(int a, int b)
         {
         return a-b;
      }  
  }  


Create Documentation API by JavaDoc tool
         JavaDoc Calculator.java


Leave a Reply

Your email address will not be published. Required fields are marked *