0
我在方法(private void jButton2ActionPerformed
)中創建了類DownloadManager
的實例,並且需要通過另一種方法訪問它?如何用不同的方法創建一個類的實例?
private void jButton3ActionPerformed(java.awt.event.ActionEvent evt) {
//need to access the instance dman here
}
private void jButton2ActionPerformed(java.awt.event.ActionEvent evt) {
DownloadManager dman = new DownloadManager();
dman.actionAdd("http://dev.x-plane.com/download/tools/wed_mac_141r1.zip");
dman.actionAdd("http://dev.x-plane.com/download/tools/wed_mac_141r1.zip");
dman.setVisible(true);
}
也許看看單身模式?可以使用一個類級別的實例? – MadProgrammer
如果您需要其他方法中的DownloadManager對象,請在此處定義。我看到你不在jButton2ActionPerformed方法中使用它。 –