Java's Support System जावा का सहयोगी तंत्र
Java एप्लिकेशन और अप्लेट्स को सफलतापूर्वक चलाने के लिए कई सहयोगी घटकों (supporting components) की आवश्यकता होती है। ये घटक Java को एक प्लेटफ़ॉर्म-स्वतंत्र और सुरक्षित भाषा बनाने में महत्वपूर्ण भूमिका निभाते हैं। इस लेख में हम जावा के समर्थन तंत्र (Support System) से जुड़े प्रमुख भागों को द्विभाषीय रूप में समझेंगे। 🅰️ a) Java Code | जावा कोड Java code is the actual source code written in .java files that defines the behavior and structure of a Java Applet. जावा कोड वह मूल स्रोत कोड होता है जो .java फ़ाइल में लिखा जाता है और जावा एप्लेट के व्यवहार व संरचना को परिभाषित करता है। 🗂️ Example: public class MyApplet extends Applet { public void paint(Graphics g) { g.drawString("Hello Applet", 20, 20); } } 🅱️ b) Byte Code | बाइट कोड Byte code is the compiled version of Java source code ( .class file) that is downloaded and executed by the user's browser using the Java Virtual Machine (JVM). बाइट कोड जावा स्रोत कोड का संकलित रूप होता है ( .class ...