हेल्लो दोस्तों! आज हम इस आर्टिकल में reference variable in java in Hindi (रिफरेन्स वेरिएबल क्या है?) के बारें में पढेंगे और इसका उदाहरण भी देखेंगे तो चलिए शुरू करते हैं:-
Reference Variable in Java in Hindi
हम एक object को केवल reference variable के द्वारा access कर सकते हैं. एक reference variable को एक विशेष डाटा टाइप के रूप में declare किया जाता है और इस data type को कभी-भी बदला नहीं जा सकता है.
reference variable को static variable, instance variable, method parameters, या local variables के रूप में declare किया जा सकता है।
एक reference variable जिसे final के रूप में declare किया गया जाता है, उसे किसी दूसरे object के संदर्भ में फिर से assign नहीं किया जा सकता है। इसमें object के अंदरके data को change किया जा सकता है, लेकिन reference variable को बदला नहीं जा सकता है।
इसके static variable का example –
class test {
//below variable is static variable means it is class level variable
static int i;
public static void main(String[] args) {
// As i is an static variable it can be accessed directly without using any object
System.out.println("Value before calling method1: " + i);
test t1 = new test();
t1.method1();
System.out.println("Value after calling method1: " + i);
t1.method2();
System.out.println("Value after calling method2: " + i);
}
void method1() {
i++;
}
void method2() {
i++;
}
}
निवेदन:- अगर आपको यह पोस्ट अच्छी लगी हो तो इसे अपने classmates के साथ जरुर share कीजिये और आपके जावा से related कोई question हो तो नीचे कमेंट करके बताइए. thanks.
Sach a helpful page/site i never comments but you deserves a from everyone. thank you so much