Self-learning notes Knowledge problem summary
--Object-oriented programming language --Compiled type
① "Basic data type" ② "Reference type"
--Performed at both "compile time" and "run time"
--The program to be executed requires a "main method" --java programs can be compiled
--For compilation
「.java」 --java source file extension --Comment description OK --The statement delimiter is "; (semicolon)"
「.class」 --Class file extension --Can be run on another Java platform without compiling
--Execution starts from main method --"Runtime library" "JVM (Java Virtual Machine)" is required
JRE(Java Runtime Environment) --Includes everything you need to run Java programs, except the compiler (Also virtual machines)
--Ability to release memory areas that are no longer needed
Recommended Posts