Sunday, November 26, 2023

Constants (Literal) in Java जावा में स्थिरांक

In Java, a constant is a variable whose value cannot be changed once it has been assigned. Constants are typically used to represent fixed values that remain the same throughout the execution of a program. In Java, constants are often declared using the final modifier.
जावा में, स्थिरांक एक वेरिएबल है जिसका मान एक बार निर्दिष्ट होने के बाद बदला नहीं जा सकता है। स्थिरांक का उपयोग आमतौर पर निश्चित मानों को दर्शाने के लिए किया जाता है जो किसी प्रोग्राम के निष्पादन के दौरान समान रहते हैं। जावा में, स्थिरांक को अक्सर अंतिम संशोधक का उपयोग करके घोषित किया जाता है।
Syntax:-
final datatype constant_name=value;

Example:-
final double PI=3.14159;

In Java, a global constant typically refers to a constant variable that is accessible throughout a class or even across multiple classes within the same package. You can create a global constant by using the final modifier and often the static modifier.
जावा में, एक वैश्विक स्थिरांक आम तौर पर एक स्थिर चर को संदर्भित करता है जो एक कक्षा में या एक ही पैकेज के भीतर कई कक्षाओं में भी पहुंच योग्य होता है। आप final संशोधक और static  संशोधक का उपयोग करके एक वैश्विक स्थिरांक बना सकते हैं।

Syntax:-
static final datatype constant_name=value;

Example:-
static final double PI=3.14159;

Program:-
public class ConstantsExample {
// Declaration of constants
static final int MAX_VALUE = 100;
static final String GREETING = "Hello, World!";
static final double PI = 3.14159;
public static void main(String[] args) {
// Accessing constants within the main method
System.out.println("Max Value: " + MAX_VALUE);
System.out.println("Greeting: " + GREETING);
System.out.println("Value of PI: " + PI);
}
}

No comments:

Post a Comment

Java program to implement file input stream class to read binary data from image file.

import java.io.FileInputStream; import java.io.IOException; public class ReadImageFile {     public static void main(String[] args) {       ...