java之事件实现问题

publicclassTtemeventDemoextendsJFrameimplementsItemListener,ActionListener{JRadioButt... public class TtemeventDemo extends JFrame implements ItemListener,ActionListener{
JRadioButton opt1,opt2;
ButtonGroup btg;
JTextArea ta;
JComboBox comb;
JLabel sex,city;
public TtemeventDemo(String title){
super(title);
setLayout(new FlowLayout(FlowLayout.LEFT);
set=new JLbel(“性别”);
city=new JLabel(“籍贯”);
opt1=new JRadioButton(“男”);
opt2=new JRadioButton(“女”);
btg=new ButtonGroup();
btg.add(opt1);
btg.add(opt2);
opt1.addItemListener(this);
opt2.addItemListener(this);
ta=newJTextArea(8,35);
comb=new JComboBox();
comb.addItem(“北京”);
comb.addItem(“上海”);
comb.addItem(“南京”);
comb.addItem(“广州”);
comb.addItem(“成都”);
comb.addItem(“昆明”);
comb.addItemListener(this);
comb.addActionListener(this);
getContentPane().add(sex);
getContentPane().add(opt1);
getContentPane().add(opt2);
getContentPane().add(city);
getContentPane().add(comb);
getContentPane().add(ta);
setTitle(title);
setSize(300,250);
setVisible(true);
}
public static void main(String args[]){
new TtemeventDemo ("ItemeventDemo");
}
public void itemStateChanged(ItemEvent e){
String str;
if(e.getSource()==opt1)
ta.append(“\n性别:+男);
else if(e.getSource()==opt2)
ta.append(“\n性别:+女);
if(e.getSource()==comb)
{str=comb.getSelectedItem().toString();
ta.append(.........(不想写));
}
}
public void actionPerformed(ActionEvent e){
String str;
if(e.getSource()==comb){
str=comb.getSelectedItem().toString();
ta.append(.......);
展开
 我来答
百度网友845f74e61
2011-07-16 · TA获得超过6929个赞
知道大有可为答主
回答量:4050
采纳率:50%
帮助的人:1614万
展开全部
.......................
问什么呀?
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式