编译
在terminal中,运行Java程序,首先dir(相当于Linux中的ls)和cd到对应文件夹
javac xxx.java编译Java程序
C:\Users\phoeb\IdeaProjects\beginner\src\hello_pkg>javac hello_world.java
用window中的type命令查看编译出的class文件(不同于Linux中的cat)
C:\Users\phoeb\IdeaProjects\beginner\src\hello_pkg>type hello_world.class
漱壕 8
<init> ()V Code LineNumberTable main ([Ljava/lang/String;)V
SourceFile hello_world.java Hello world Phoebe
然后运行
C:\Users\phoeb\IdeaProjects\beginner\src\hello_pkg>java hello_world.java
Hello world Phoebe