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.
抱歉,这里是 Groovy Noob:
这是我的 Groovy 课程 -
class MyClass { static void main() { println("Hello World"); } ...
如何在 Eclipse STS 中运行这个类?我想保留主要方法。我不想把它改成一个脚本。
谢谢
要启动一个方法,main 你必须传入一个字符串数组(String[] 东西)。使用以下内容。
public static void main(String[] args) { System.out.println("Hello World")! }
请记住... Groovy 类是Java 类。您需要做的就是右键单击 -> 运行方式 -> Java 应用程序。