जावा ट्यूटोरियल

जावा होम जावा परिचय जावा प्रारंभ करें जावा सिंटेक्स जावा टिप्पणियाँ जावा चर जावा डेटा प्रकार जावा टाइप कास्टिंग जावा ऑपरेटर्स जावा स्ट्रिंग्स जावा मठ जावा बूलियन जावा अगर ... और जावा स्विच जावा जबकि लूप लूप के लिए जावा जावा ब्रेक/जारी रखें जावा सरणी

जावा तरीके

जावा तरीके जावा विधि पैरामीटर्स जावा विधि ओवरलोडिंग जावा स्कोप जावा रिकर्सन

जावा क्लासेस

जावा ओओपी जावा क्लासेस/ऑब्जेक्ट्स जावा क्लास एट्रीब्यूट्स जावा क्लास मेथड्स जावा कंस्ट्रक्टर्स जावा संशोधक जावा एनकैप्सुलेशन जावा पैकेज / एपीआई जावा विरासत जावा बहुरूपता जावा इनर क्लासेस जावा एब्स्ट्रैक्शन जावा इंटरफ़ेस जावा Enums जावा उपयोगकर्ता इनपुट जावा तिथि जावा ऐरेलिस्ट जावा लिंक्डलिस्ट जावा हैश मैप जावा हैशसेट जावा इटरेटर जावा रैपर क्लासेस जावा अपवाद जावा रेगेक्स जावा धागे जावा लैम्ब्डा

जावा फ़ाइल हैंडलिंग

जावा फ़ाइलें जावा फ़ाइलें बनाएँ/लिखें जावा फ़ाइलें पढ़ें जावा फ़ाइलें हटाएं

जावा कैसे करें

दो नंबर जोड़ें

जावा संदर्भ

जावा कीवर्ड जावा स्ट्रिंग तरीके जावा गणित के तरीके

जावा उदाहरण

जावा उदाहरण जावा कंपाइलर जावा व्यायाम जावा प्रश्नोत्तरी जावा प्रमाणपत्र


जावा संशोधक


संशोधक

publicअब तक, आप हमारे लगभग सभी उदाहरणों में प्रकट होने वाले कीवर्ड से भली-भांति परिचित हो चुके हैं:

public class Main

publicकीवर्ड एक एक्सेस संशोधक है , जिसका अर्थ है कि इसका उपयोग कक्षाओं, विशेषताओं, विधियों और कंस्ट्रक्टरों के लिए एक्सेस स्तर सेट करने के लिए किया जाता है।

हम संशोधक को दो समूहों में विभाजित करते हैं:

  • एक्सेस संशोधक - एक्सेस स्तर को नियंत्रित करता है
  • गैर-पहुंच संशोधक - पहुंच स्तर को नियंत्रित नहीं करते हैं, लेकिन अन्य कार्यक्षमता प्रदान करते हैं

एक्सेस संशोधक

कक्षाओं के लिए , आप publicया तो डिफ़ॉल्ट का उपयोग कर सकते हैं :

Modifier Description Try it
public The class is accessible by any other class
default The class is only accessible by classes in the same package. This is used when you don't specify a modifier. You will learn more about packages in the Packages chapter

विशेषताओं, विधियों और निर्माणकर्ताओं के लिए , आप निम्न में से किसी एक का उपयोग कर सकते हैं:

Modifier Description Try it
public The code is accessible for all classes
private The code is only accessible within the declared class
default The code is only accessible in the same package. This is used when you don't specify a modifier. You will learn more about packages in the Packages chapter
protected The code is accessible in the same package and subclasses. You will learn more about subclasses and superclasses in the Inheritance chapter

गैर-पहुंच संशोधक

कक्षाओं के लिए , आप finalया तो उपयोग कर सकते हैं abstract:

Modifier Description Try it
final The class cannot be inherited by other classes (You will learn more about inheritance in the Inheritance chapter)
abstract The class cannot be used to create objects (To access an abstract class, it must be inherited from another class. You will learn more about inheritance and abstraction in the Inheritance and Abstraction chapters)

विशेषताओं और विधियों के लिए , आप निम्न में से किसी एक का उपयोग कर सकते हैं:

Modifier Description
final Attributes and methods cannot be overridden/modified
static Attributes and methods belongs to the class, rather than an object
abstract Can only be used in an abstract class, and can only be used on methods. The method does not have a body, for example abstract void run();. The body is provided by the subclass (inherited from). You will learn more about inheritance and abstraction in the Inheritance and Abstraction chapters
transient Attributes and methods are skipped when serializing the object containing them
synchronized Methods can only be accessed by one thread at a time
volatile The value of an attribute is not cached thread-locally, and is always read from the "main memory"


अंतिम

यदि आप मौजूदा विशेषता मानों को ओवरराइड करने की क्षमता नहीं चाहते हैं, तो विशेषताओं को इस प्रकार घोषित finalकरें:

उदाहरण

public class Main {
  final int x = 10;
  final double PI = 3.14;

  public static void main(String[] args) {
    Main myObj = new Main();
    myObj.x = 50; // will generate an error: cannot assign a value to a final variable
    myObj.PI = 25; // will generate an error: cannot assign a value to a final variable
    System.out.println(myObj.x);
  }
}


स्थिर

एक staticविधि का अर्थ है कि इसे वर्ग की वस्तु बनाए बिना पहुँचा जा सकता है, इसके विपरीत public:

उदाहरण

staticऔर publicविधियों के बीच अंतर प्रदर्शित करने के लिए एक उदाहरण :

public class Main {
  // Static method
  static void myStaticMethod() {
    System.out.println("Static methods can be called without creating objects");
  }

  // Public method
  public void myPublicMethod() {
    System.out.println("Public methods must be called by creating objects");
  }

  // Main method
  public static void main(String[ ] args) {
    myStaticMethod(); // Call the static method
    // myPublicMethod(); This would output an error

    Main myObj = new Main(); // Create an object of Main
    myObj.myPublicMethod(); // Call the public method
  }
}


सार

एक abstractविधि एक abstractवर्ग से संबंधित है, और इसमें कोई शरीर नहीं है। शरीर उपवर्ग द्वारा प्रदान किया जाता है:

उदाहरण

// Code from filename: Main.java
// abstract class
abstract class Main {   public String fname = "John";   public int age = 24;   public abstract void study(); // abstract method } // Subclass (inherit from Main) class Student extends Main {   public int graduationYear = 2018;   public void study() { // the body of the abstract method is provided here     System.out.println("Studying all day long");   } } // End code from filename: Main.java // Code from filename: Second.java class Second {   public static void main(String[] args) {     // create an object of the Student class (which inherits attributes and methods from Main)     Student myObj = new Student();     System.out.println("Name: " + myObj.fname);     System.out.println("Age: " + myObj.age);     System.out.println("Graduation Year: " + myObj.graduationYear);     myObj.study(); // call abstract method
  } }