我的问题是我的消息不会出现在我的顾问窗口中,并且我没有弹出错误

package test;


public class Test {
    public static void main(String[] args) {
        new start();
    }
}

class start{

    Dialog dialog;
    int dude = 0;
    String[] text = new String[7];

    class Dialog {
        void dialog(){
            System.out.println("hi");
        }
    }

    start(){
        new Dialog();
    }
}

最佳答案

您使用的是void dialog()方法而不是Dialog构造函数。请尝试以下操作:

public class Test
{

    public static void main(String[] args)
    {
        new start();

    }

}

class start
{

    Dialog dialog;
    int dude = 0;
    String[] text = new String[7];

    class Dialog
    {

        Dialog()
        {
            System.out.println("hi");
        }
    }

    start()
    {
        new Dialog();

    }
}

10-05 21:12
查看更多