如何使用java在windowBuilder中实现从一个窗口给另外一个传值传对象?
展开全部
可以这样试试:
class Frame1 extends JFrame{
JTextArea text=new JTextArea();
public Frame1(){
super("JFrame1");
setSize(100,100);
add(text);
setVisible(true);
}
public String getText(){
return text.getText();
}
}
class Frame2 extends JFrame{
JTextArea text=new JTextArea();
public Frame2(Frame1 f){
super("Frame2");
setSize(100,100);
add(text);
setVisible(true);
text.setText(f.getText());
}
}
public class Test{
public static void main(String args[]){
Frame1 f1=new Frame1();
Frame2 f2=new Frame2(f1);
}
}
更多追问追答
追问
在窗口里面定义一个方法试过。但我不知道为什么在测试的时候却不能启动窗口。然后在给构造方法设置一个参数也试过,可是会报空指针〒_〒。
追答
那是代码没有写正确吧。实在不行我给你看一下
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询