求大神解释一下这段java代码
//复制的监听classcopylimplementsActionListener{publicvoidactionPerformed(ActionEvente){jta...
//复制的监听
class copyl implements ActionListener
{
public void actionPerformed ( ActionEvent e )
{
jta.copy();
}
}
//粘贴的监听
class pastel implements ActionListener
{
public void actionPerformed ( ActionEvent e )
{
jta.paste();
}
}
//剪切的监听
class cutl implements ActionListener
{
public void actionPerformed ( ActionEvent e )
{
jta.cut();
}
} 展开
class copyl implements ActionListener
{
public void actionPerformed ( ActionEvent e )
{
jta.copy();
}
}
//粘贴的监听
class pastel implements ActionListener
{
public void actionPerformed ( ActionEvent e )
{
jta.paste();
}
}
//剪切的监听
class cutl implements ActionListener
{
public void actionPerformed ( ActionEvent e )
{
jta.cut();
}
} 展开
展开全部
ActionListener是个接口
copyl、pastel、cutl都实现了该接口,用于不同的监听
copyl、pastel、cutl都实现了该接口,用于不同的监听
追问
public void actionPerformed ( ActionEvent e ) 这段代码什么意思能解释下么?
追答
ActionListener 里有个方法是public void actionPerformed ( ActionEvent e )
copyl、pastel、cutl都要实现actionPerformed这个方法,但是他们具体实现的内容不一样,分别是jta.copy();jta.paste();和jta.cut();
在使用时
ActionListener al = new copyl();
al.actionPerformed(); 那么al就是复制的监听
如果ActionListener al = new pastel();那么al就是粘贴的监听。
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询