2024-11-04
要想让Java代码运行起来,需要进行编译。编译步骤:
编写-编译-运行
编写.java -> bin/javac编译成字节码 -> bin/java运行
javac HelloWorld.java
java HelloWorld