它可以在main中打印任何东西吗?



我现在正在写一个java应用程序,没有任何东西正在运行!我甚至可以打印简单的System.out.println("hi");

下面是代码。我可以清楚地看到输出窗口。没有返回任何错误。我使用netbeans 8.0.2

public class BookingSystem{
public static void main(String[] args){
    System.out.print("hi"); 
    }
}

运行您发布的代码应该不会有问题。确保运行的是BookingSystem类,而不是其他类。使用'运行文件'在Netbeans(或Shift+F6)运行BookingSystem类。

在记事本中尝试相同的代码,在命令提示符下编译并运行程序

相关内容

  • 没有找到相关文章

最新更新