我该怎么做才能获得新对象的信息?

时间:2009-11-25 10:04:18

标签: java

我有一个Main Frame和一个JDialog,我在主框架中创建了一个对象,然后将其发送到JDialog及其构造函数,并将其分配给新对象它有类似的类型。我在JDialog中向新对象添加了一些信息,但之后我需要Main Frame中的新对象信息?

我应该将新对象从JDialog发送到主框架吗?如果是,怎么样?

1 个答案:

答案 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");
  }
}

(我猜这个问题与你之前的问题有关,这就是为什么我选择这个 - 否则很奇怪 - 例子)

希望它有所帮助!