我有一个Main Frame
和一个JDialog
,我在主框架中创建了一个对象,然后将其发送到JDialog
及其构造函数,并将其分配给新对象它有类似的类型。我在JDialog
中向新对象添加了一些信息,但之后我需要Main Frame
中的新对象信息?
我应该将新对象从JDialog
发送到主框架吗?如果是,怎么样?
答案 0 :(得分:0)
不,你不需要发回东西(在你的情况下)。它真的像这样:
public void addStudentAction() {
AddStudent myAddStudentDialog = new AddStudent(this, true, this.management);
myAddStudentDialog.setVisible(true);
// now you enter a password on the dialog
if (this.management.getStudentsPasswort() == null) {
// There's a bug in AddStudent class
} else {
System.out.println("HipHipHooray");
}
}
(我猜这个问题与你之前的问题有关,这就是为什么我选择这个 - 否则很奇怪 - 例子)
希望它有所帮助!