निम्नलिखित एक उदाहरण है, जिसमें हम गैर-अंतिम चर का उपयोग करके अप्राप्य विवरण देखेंगे -
उदाहरण
class Demo_example { int a = 2, b = 3; void display_msg(){ while (a < b){ System.out.println("The first variable is greater than the second"); } System.out.println("This is an unreachable statement"); } } public class Demo{ public static void main(String args[]){ Demo_example my_instance = new Demo_example(); my_instance.display_msg(); } }
आउटपुट
“The first variable is greater than the second” displayed infinitely
Demo_example नामक एक वर्ग, जो दो चरों को परिभाषित करता है। फिर 'display_msg' नाम के एक फ़ंक्शन को परिभाषित किया जाता है, और दो चरों को उनकी समानता के लिए जाँचा जाता है। प्रासंगिक संदेश कंसोल पर प्रदर्शित होता है। 'डेमो' नामक एक अन्य फ़ंक्शन में मुख्य फ़ंक्शन होता है, जहां 'Demo_example' वर्ग का एक उदाहरण बनाया जाता है। इस उदाहरण पर 'display_msg' को कॉल किया जाता है और संबंधित आउटपुट कंसोल पर प्रदर्शित होता है।