gpt4 book ai didi

java - 在类中找不到 Main 方法,在 NetBeans 中有效,但在 CM 中无效

转载 作者:行者123 更新时间:2023-12-01 22:21:30 25 4
gpt4 key购买 nike

我用记事本写了一个非常简单的代码(Hello World!),它编译得很好,但是当我厌倦运行它时,我收到一条消息说错误:

Main method not found in class Test4, please define the main method as: public static void main (String[] args) or a JavaFX application class must extend javafx.application.Application.

当我使用NeatBeans时没问题,但当使用CM提示时出现问题

class Test4 {
public static void main(String[] args) {
System.out.println("Hello World!");
}
}

最佳答案

包含 main 方法的类必须标记为 public。这是入口点。如果您想在非公共(public)类中执行 main 方法,唯一的方法是从公共(public)类的 main 方法中调用 main 。

public class Test4 {
public static void main(String[] args) {
System.out.println("Hello World!");
}
}

关于java - 在类中找不到 Main 方法,在 NetBeans 中有效,但在 CM 中无效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58586722/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com