认为:
public class Window
{
public void Dialog ()
{
JDialog JD = new JDialog();
// add pictures/labels onto JDialog
}
}
和:
public class Main
{
//Suppose here is a GUI with a button that if clicked called the Dialog method
}
我的问题是我无法弄清楚如何在 Eclipse 上访问该方法。我在 Window 类上创建了一个构造函数来调用该方法,但这对我不起作用。
Window instance1 ; // create instance of class public Window (Window temp){ instance1 = temp; }
///On Main Class
Dialog temp1 = new Dialog (temp1);
temp1.OpenDialog (); // calls method from other class
我知道调用构造函数的语法问题,但我不知道出了什么问题。