不确定之前是否有人问过,这有点难以解释。
我有2个班,A班和B班
A类创建一个B类实例(使用JDialog的对话框)。 然后要求用户输入文本(存储在String变量中)。
如何告诉A类用户现在已经更新了变量并获得了它的副本?
使用Java Swing btw,
谢谢
Ť
答案 0 :(得分:4)
一般来说,Observer Pattern处理此类案件
答案 1 :(得分:2)
如果对话框是模态的,则代码将被阻止,直到对话框关闭:
dialog.setVisible(true);
// blocked here until the dialog is closed. The dialog stores the input in a
// field when OK is clicked in the dialog
if (dialog.getTextInputtedByTheUser() != null) {
...
如果对话框不是模态的,则需要在验证发生时调用回调方法。这就是MyFrame将包含的内容
private void showDialog(
MyDialog dialog = new MyDialog(this);
dialog.setVisible(true);
}
public void userHasInputSomeText(String text) {
// do whatever you want with the text
System.out.println("User has entered this text in the dialog: " + text);
}
并在MyDialog中:
private MyFrame frame;
public MyDialog(MyFrame frame) {
super(frame);
this.frame = frame;
}
...
private void okButtonClicked() {
String text = textField.getText();
frame.userHasInputSomeText(text);
}