一、如何运行一个Java程序?
在磁盘上的.java文件经过javac编译生成.class字节码文件,通过java文件名运行程序加载到JVM虚拟机中
 {
System.out.println("HelloWorld");
}
}