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
上一篇:强化学习(二):贪心策略(ε-greedy & UCB)


下一篇:计算机公开课推荐 2019.8