Java: Difference between revisions

119 bytes added ,  1 November 2019
no edit summary
No edit summary
No edit summary
Line 1: Line 1:
Java is a popular object-oriented programming language taught in many high-schools and introductory computer science courses.
Java is a popular object-oriented programming language taught in many high-schools and introductory computer science courses.
Java programs (.java or .jar for java archive) are compiled into Java bytecode (.class) files which are then interpreted by the Java virtual machine (JVM). To run Java programs, you will need to get the JVM by installing the Java runtime environment (JRE) or the Java development kit (JDK).
Java programs (.java) are compiled into Java bytecode (.class) files which are then interpreted by the Java virtual machine (JVM).  
Java programs and libraries (both .java and .class files) can be bundled into a Java archive (.jar) file. These are zip files with a manifest.
To run Java programs, you will need to get the JVM by installing the Java runtime environment (JRE) or the Java development kit (JDK).


==Usage==
==Usage==