Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 class1 中设置了 JLabel 的值
NewLabel.setText("xyz");
我可以使用读取 Jlabel 的值
NewLabel.getText();
现在我想知道如何使用按钮单击获取 Class2 中 JLabel 的值
public void actionPerformed(ActionEvent arg0){}
在类 1 中创建一个返回 NewLabel 文本的方法(您可以通过将 NewLabel 的文本放入 String 对象中来实现,例如 str,然后返回 str)。
现在在类 2 中,创建类 1 的对象,(例如 Class1 cl1=new Class1();)。现在只需调用您在类 1 中创建的方法(例如,cl1.getNewLabelText()) .getNewLabelText() 是一个示例您可以为为类 1 创建的方法提供名称。