以下是生成菜单项对象,以及菜单项选择事件处理方法的部分代码。要求当菜单项 singingItem 被选中时,在文本框 text 中输出“唱歌菜单项被选中!”的字样。 ...... singingItem=new________( "唱歌" ) ; // 生成菜单项对象 ...... public void actionPerformed(ActionEvent e){ if(e.getSource()==singingItem) text.setText(e.________()+ "菜单项被选中 ! " ) ; }