Resource:openhome.cc
package/import
JetBrains
概念 (Concept)
Java has a mechanism that cleans memory automatically.
Java follows the "write once, run anywhere" (or WORA) principle. The same program can be run on multiple platforms without any changes.
compile java program: javac執行javac xxx.java後, 會將xxx.java編譯成xxx.class,其中.class檔是可以運行在JVM的bytecode格式
execute java program:java xxx