我有这个班子。
public class MyFrame extends JFrame{
JTextArea textArea;
public MyFrame(){
setSize(100,100);
textArea = new JTextArea(50,50);
Container content = getContentPane();
content.add(textArea);
}
public static void main(String[] args){
JFrame frame = new MyFrame();
frame.show();
UpdateText u = new UpdateText();
u.settext("Helloworld");
}
}
我有另一个类别,将确定<代码>textArea的案文,其中我把我的Frame延伸到另一个类别中的文本Area。
public class UpdateText extends MyFrame{
public void settext(String msg){
textArea.setText(msg);
}
}
然后,我即时发送最新情况,并称其职能为文字,但案文似乎在《全球倡议》中出现。