field -Variable name declared in the class -A unit that resists records. (Other meaning fields / areas, etc.)
A command to launch a Java application. (Run a Java program)
option | Overview |
---|---|
-classpath | Where to search for related class files |
--module-path | Where to search for modules |
-jar | Run the jar file |
-version | Show Java version |
** Example: An example of running Test.jar. Set "Taro" as a parameter. ** ** >> java -jar Test.jar ** "Taro" **
JVM(Java Vitual Machine) Software for running Java programs. In other words, "Java virtual machine" and "Java VM"
Java is a language created with the idea that Java runs on any machine.
① Java program ⇒ ② JVM ⇒ ③ OS Interpret ①, convert it to a code that can be executed by the OS of ③, and operate it. (2) JVM is indispensable to run programs written in Java without depending on the platform.
Convert text code to binary code (machine language) from ① to ② Read the binary code from ② to ③ and convert it to native code
There are roughly three areas.
A memory area used by a system such as an OS or application.
Recommended Posts