JAVA 相关问题 The type BRTest must implement the inherited abstract

package例题4;importjava.awt.*;importjavax.swing.*;importjava.awt.event.*;classBRTestext... package 例题4;
import java.awt.*;
import javax.swing.*;
import java.awt.event.*;
class BRTest extends JFrame implements ItemListener,ActionListener
{
JTextField text=new JTextField(15);
BRTest(String s)
{
setSize(200,200);
setVisible(true);
setTitle(s);
setLayout(new FlowLayout());
JCheckBox cb1=new JCheckBox("C语言");
cb1.addItemListener(this);
add(cb1);
JCheckBox cb2=new JCheckBox("C++语言");
cb2.addItemListener(this);
add(cb2);
JCheckBox cb3=new JCheckBox("Java语言");
cb3.addItemListener(this);
add(cb3);
JRadioButton b1=new JRadioButton("鲜花");
b1.addActionListener(this);
add(b1);
JRadioButton b2=new JRadioButton("鼓掌");
b1.addActionListener(this);
add(b2);
JRadioButton b3=new JRadioButton("鸡蛋");
b1.addActionListener(this);
add(b3);
ButtonGroup bg=new ButtonGroup();
bg.add(b1);
bg.add(b2);
bg.add(b3);
add(text);
validate();
}
public void itemStateChanged(ItemEvent ie){
JCheckBox cb=(JCheckBox)ie.getItem();
text.setText(cb.getText());
}
public void actionPerforemd(ActionEvent ae){
text.setText(ae.getActionCommand());}
}
public class li4 {
public static void main(String args[])
{

new BRTest("简单的复选单选框");
}
}

报错 The type BRTest must implement the inherited abstract method ActionListener.actionPerformed(ActionEvent) 不知道为什么? 谢谢
展开
 我来答
乌微月2S
推荐于2018-03-10 · TA获得超过5037个赞
知道大有可为答主
回答量:5361
采纳率:42%
帮助的人:2892万
展开全部
你没有实现ActionListener的actionPerformed方法啊。

你的拼写错误,写成了actionPerforemd。多个e。
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式