JAVA SWING 中 AbstractButton 中的方法 addActionListener(ActionListener)对于参数不适用
JButtonb1=newJButton("打印");b1.setBounds(80,140,100,50);b1.setBorderPainted(false);b1....
JButton b1=new JButton("打印");
b1.setBounds(80,140,100,50);
b1.setBorderPainted(false);
b1.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e){
JOptionPane.showMessageDialog(null,"弹出对话框");
}
});
Eclipse报错,错误为
ActionListener 无法解析为类型
- 类型 AbstractButton 中的方法 addActionListener(ActionListener)对于参数(new ActionListener()
{})不适用
这是怎么回事?感谢回答 展开
b1.setBounds(80,140,100,50);
b1.setBorderPainted(false);
b1.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e){
JOptionPane.showMessageDialog(null,"弹出对话框");
}
});
Eclipse报错,错误为
ActionListener 无法解析为类型
- 类型 AbstractButton 中的方法 addActionListener(ActionListener)对于参数(new ActionListener()
{})不适用
这是怎么回事?感谢回答 展开
4个回答
展开全部
import java.awt.event.ActionListener;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
在你的与文件同名的类后面添加接口 implements ActionListener
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你导入错误的包了,我这样写好多次了都没问题 上面import删了ctrl + shift + o
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
代码没问题
是不是没有import相关的类
是不是没有import相关的类
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询