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.
class hello{ public static void main(String[] arguments){ System.out.println("Hello World!"); System.out.println("New Line."); } }
以上是我的代码,eclipse运行它没有错误报告。它应该打印出 Hello World!和新线。但是我怎么能看到这些内容呢?我在eclipse中找不到。
做你的课public。它没有运行它,因为它不公开。
public
做一个窗口-> 显示视图-> 控制台,你应该能够看到它。