其他分享
首页 > 其他分享> > UCB CS61b——Class 1

UCB CS61b——Class 1

作者:互联网

编译

在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

标签:java,Users,beginner,CS61b,Class,UCB,world,hello,pkg
来源: https://blog.csdn.net/weixin_44053979/article/details/101296562