Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在我的 Mac 上做了一个简单的 hello world 程序。我去了终端并输入
javac ~/Documents/java/helloworld.java
终端暂停然后什么也不做。它没有任何错误或任何东西。你做什么来解决这个问题?
你已经成功编译了你的程序,但你还没有运行它。没有什么可以解决的;运行!
假设你没有把你的类放在一个包中,运行java:
java
java ~/Documents/java/helloworld
要运行的类上没有“.class”。
这意味着您编译程序没有任何错误。
要运行你的程序,你可以这样做:
cd ~/Documents/java/ java helloworld