当前位置: 代码迷 >> Java相关 >> 看看这个程序
  详细解决方案

看看这个程序

热度:122   发布时间:2006-08-28 01:16:53.0
看看这个程序

帮我运行下看看 这是个么错误 就一个错误了 我是看不懂这个错误说的么意思
import java.awt.*;
import java.awt.event.*;
public class MenuExample extends FrameimplementsItemListener,ActionListener{
TextField tf;
public MenuExample(){
super("Menu Example");
setSize(300,200);
}
public void init() {
MenuBar mb = new MenuBar();
setMenuBar(mb);
Menu m1 = new Menu("File");
m1.add(new MenuItem("open..."));
mi1.setEnabled(false);
m1.add(mi1);
m1.add("close");
m1.addSeparator();
m1.add("Exit");
m1.addActionListener(this);
mb.add(m1);

Menu ms = new Menu("Option");
ms.add("Font...");
Menu ms = new Menu("Color...");
ms.add("Foreground");
ms.add("Background");
ms.addActionListener(this);
m2.add(ms);
m2.addSeparator();
CheckboxMenuItem cm = new CheckboxMenuItem("Always On Top");
cm.addItemListener(this);
m2.add(m2);

Menu h = new Menu("Help");
h.add("about...");
h.addActionListener(this);
mb.setHelpMenu(h);
tf = new TextField();
add("south",tf);
}
public static void main (String [] args){
MenuExample me = new MenuExample();
me.init();
me.setVisible(true);
}

public void itemStateChanged(ItemEvent e){
tf.setText("ItemStateChanged");
}
public void actionperformed(ActionEvent e){
tf.setText(e.getActionCommand());
if(e.getActionCommand()=="Exit"){
System.exit(0);
}
}
}
}

搜索更多相关的解决方案: public  import  super  false  

----------------解决方案--------------------------------------------------------
你的程序错误太多,仔细检查吧!
----------------解决方案--------------------------------------------------------
你的编译器会告诉你错误在哪里
并且为什么会错
----------------解决方案--------------------------------------------------------

对阿 还是把问题具体的说一下吧 要不然较难理解。。


----------------解决方案--------------------------------------------------------
就一个错误啊 我编译来 提示就一个错  [IMG]http://img618.photo.163.com/dkss8888/69258184/1913006029.jpg[/IMG]
----------------解决方案--------------------------------------------------------
看不到图。。。
----------------解决方案--------------------------------------------------------
晕! 我能看见我发的那个图啊 [IMG]http://img618.photo.163.com/dkss8888/69258184/1913006029.jpg[/IMG]
----------------解决方案--------------------------------------------------------
[IMG]http://img618.photo.163.com/dkss8888/69258184/1913006029.jpg[/IMG]
----------------解决方案--------------------------------------------------------

晕为么上传不了图来 郁闷


----------------解决方案--------------------------------------------------------
你点右键 显示图片 看看
----------------解决方案--------------------------------------------------------
  相关解决方案