如何将对象传递给jButton1ActionPerformed

时间:2018-10-21 00:32:04

标签: java netbeans jframe

我正在使用JFrame在NetBeans中制作GUI,现在我想在单击按钮时显示来自现有对象的一些数据。但是问题是我无法将对象传递给jButton1ActionPerformed,因为我无法编辑此对象函数,我不想创建静态函数。谢谢

private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {                                         
    // TODO add your handling code here:
   System.out.println(Class.getdata());//here i want to access getdata 
   //function without creating an object here.HOw to pass an object here?
}   

0 个答案:

没有答案