这就是问题所在。我必须使用来自A级TextArea
的{{1}}的值填充B级tAreaB
(TextArea
)。{/ p>
我在A组这样做:
tAreaA
如何将tAreaA.setText("Value A");
填入与tAreaB
相同的值?
我在ClassB中试过这个:
tAreaA
答案 0 :(得分:0)
我想你知道如何运作方法,所以,你唯一需要做的就是非常简单......
代码:
//Class A - button's - ActionListener.
button.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent A){
//Create a empty variable: String, with the name of: value.
String value = "";
//Value, gets the text of the: txtAreaA.
value = txtAreaA.getText();
//Calls the: classB, and create a new object from them.
classB cb = new classB();
//cb.txtAreaB(); is the method who creates a: JFrame, with JTextArea, in classB.
cb.txtAreaB();
//Now, just call the object, and set the text: value.
cb.txtAreaB.setText(value);
}});