Java / Netbeans构建成功但println未显示

时间:2014-04-14 01:00:36

标签: java netbeans

所以我使用netbeans开始编写一些Java。我创建了一个名为" Java21"在其中我有一个VolcanoRobot.java文件(这只是一个类),VolcanoApplication.java(这是我试图运行的),然后是Java21.java文件(我假设刚刚创建的文件)创建项目。

这是我的VolcanoApplication.java文件:

class VolcanoApplication {

    public static void main(String[] arguments) {
        VolcanoRobot dante = new VolcanoRobot();
        dante.status = "exploring";
        dante.speed = 2;
        dante.temperature = 510;
        dante.showAttributes();
        System.out.println("Increasing speed to 3.");
        dante.speed = 3;
        dante.showAttributes();
        System.out.println("Changing temperature to 670.");
        dante.temperature = 670;
        dante.showAttributes();
        System.out.println("Checking the temperature.");
        dante.checkTemperature();
        dante.showAttributes();
    }
}

无论如何,当我点击"运行项目"时,输出窗格会显示" BUILD SUCCESSFUL",但上面的代码不应该吐出任何文本out(来自System.out.println ...)

感觉这与两个" main"有关。方法,但任何帮助非常感谢!

谢谢, Mariogs

1 个答案:

答案 0 :(得分:4)

在没有看到Netbeans设置的情况下很难看到,但是如果你点击了run project并且你的项目有多个包含main方法的类,那么它可能运行了错误的类。尝试直接右键单击VolcanoApplication.java并运行它,看看它是否有所作为。