我有一个班级:
UI.java
private Panel Panel1 = new Panel()
ClickMethod(){
Popup pop = new Popup(this)
}
show(){
Panel1.getText(); //should get the Text out of it
}
Popup.java
private uiobj;
Popup(Ui uiobj){
this.uiobj = uiobj
}
click(){
uiobj.show();
}
问题是我的Panel1没有通过,所以如果我打电话
show(){
Panel1.getText(); //should get the Text out of it
}
我得到一个空字符串。