java中的addActionListener(this)中的this指的是哪个对象 10
publicclassAimplementsActionListener{publicA{privateJFrameframe=newJFrame("A");privat...
public class A implements ActionListener
{
public A
{
private JFrame frame=new JFrame("A");
private JButton btn=new JButton();
btn.addActionListener(this);
}
public void actionPerformed(ActionEvent e)
{
if(e.getSource()==btn)
{
btn.setText("abc");
}
}
}
这段代码中btn.addActionListener(this);
this指的是哪个对象?是类A的对象?还是frame? 展开
{
public A
{
private JFrame frame=new JFrame("A");
private JButton btn=new JButton();
btn.addActionListener(this);
}
public void actionPerformed(ActionEvent e)
{
if(e.getSource()==btn)
{
btn.setText("abc");
}
}
}
这段代码中btn.addActionListener(this);
this指的是哪个对象?是类A的对象?还是frame? 展开
2个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询