gpt4 book ai didi

java - 我正在尝试调用类中的类中的方法

转载 作者:行者123 更新时间:2023-12-01 19:31:17 24 4
gpt4 key购买 nike

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

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();
}
}

最佳答案

您使用的是voiddialog()方法而不是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();

}
}

关于java - 我正在尝试调用类中的类中的方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59707512/

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