在我的GUI中我有一個按鈕,打開第二個GUI,並想使用方法將此代碼添加到類中,因爲我使用的是Netbeans,我只能將代碼直接進入按鈕{}添加某些代碼到一個類的按鈕點擊
這是我的代碼。
public class nextgui {
public int rungui() {
int confirmCombat = JOptionPane.showConfirmDialog(null, "Are you sure you would like to set your main trait as Combat?", "Confirm Combat", JOptionPane.YES_NO_OPTION); {
if (confirmCombat == 0) {
this.setVisible(false);
gui mainJframe = new gui();
mainJframe.setVisible(true);
}
}
return;
當我把我的新的類和方法,它拋出一個錯誤說無法找到符號,我不與Java感謝您的時間和耐心,良好的內此代碼...
'return;'您應該返回一個int的語句將其更改爲 'return 1;' – Priyamal
this.setVisible(false);仍然拋出我錯誤 –
你不能使用'setVisible(false); '在普通的班級中,你的班級應該擴展'Jframe'。那麼它將工作 – Priyamal