我有一个 Abc 类,它有一个按钮,我在 Abc 中为这个按钮添加了监听器。
class Abc
{
Jbutton abuttob=new Jbutton()
abutton.actonListner(this);
action performed()
{
// on button click goes here
}
}
现在我有 XYZ 课。
class XYZ
{
Abc oldclass=new Abc();
oldclass.abutton.addactionlistner();
action performed(){
// button click goes here
}
}
问题是无法调用在 Abc 类或 XYZ 类中执行的操作。
请建议