नहीं, "यह " कीवर्ड का उपयोग किसी वर्ग के स्थिर सदस्यों को संदर्भित करने के लिए नहीं किया जा सकता है। ऐसा इसलिए है क्योंकि "यह “कीवर्ड वर्तमान वस्तु की ओर इशारा करता है वर्ग और स्थिर सदस्य को बुलाए जाने के लिए किसी वस्तु की आवश्यकता नहीं है। किसी वर्ग के स्थिर सदस्य को सीधे बिना objec बनाए तक पहुँचा जा सकता है जावा में टी।
उदाहरण
public class StaticTest { static int a = 50; static int b; static void show() { System.out.println("Inside the show() method"); b = a + 5; } public static void main(String[] args) { show(); System.out.println("The value of a is: " + a); System.out.println("The value of b is: " + b); } }
आउटपुट
Inise the show() method The value of a is: 50 The value of b is: 55