假設:如何從另一個類訪問具有多個swing組件的方法? (JAVA)
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
我知道它的語法問題與調用構造函數,但我不知道什麼是錯。
_我的問題是,我無法弄清楚如何訪問Eclipse上的方法._ Java代碼不依賴於IDE。 – BackSlash
我們需要更多的代碼我的朋友。我在這裏看不到足夠的肉 – Coffee