传递包含对象的对象

时间:2014-04-07 15:23:49

标签: java class parameter-passing

我有一个班级:

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
    }

我得到一个空字符串。

0 个答案:

没有答案