以下一个java程序在eclipse中运行为何总是出现错误,而且这种错误在编辑窗口中没显示,大侠们帮帮忙吧!

packagebasegraph;importjavax.swing.*;importjava.awt.*;importjava.awt.event.*;publiccl... package basegraph;
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
public class joption1 extends JFrame{
public static class showb implements ActionListener{
public void actionPerformed(ActionEvent e){
if(e.getSource()==button1)
//显示警告信息对话框
JOptionPane.showMessageDialog(null, "A", "错误标志", JOptionPane.WARNING_MESSAGE);
else if(e.getSource()==button2)
JOptionPane.showConfirmDialog(null,"B", "确认", JOptionPane.YES_NO_OPTION);
else if(e.getSource()==button3)
JOptionPane.showInputDialog(null,"C","输入性息",JOptionPane.INFORMATION_MESSAGE);
}
}
//声明按钮面板和窗口
private static JButton button1,button2,button3;
private static JFrame f;
private static JPanel p;
public static void main(String []args){
f=new JFrame("显示按钮");
p=new JPanel();
button1=new JButton("A");
button1=new JButton("B");
button1=new JButton("C");
//注册事件监听器
button1.addActionListener(new showb());
button2.addActionListener(new showb());
button3.addActionListener(new showb());
//添加按钮到面板
p.add(button1);
p.add(button2);
p.add(button3);
//添加面板到窗口
f.getContentPane().add(p);
f.setSize(200,200);
f.setVisible(true);
}

}
展开
 我来答
909331440
2011-03-10
知道答主
回答量:27
采纳率:0%
帮助的人:9.4万
展开全部
button1=new JButton("A");
button1=new JButton("B");
button1=new JButton("C");
换成:
button1=new JButton("A");
button2=new JButton("B");
button3=new JButton("C");
复制时好东西,但是要注意修改
五加零等于几
2011-03-10 · TA获得超过365个赞
知道小有建树答主
回答量:97
采纳率:0%
帮助的人:99.1万
展开全部
package miniloanweb;

import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JOptionPane;
import javax.swing.JPanel;

public class joption1 extends JFrame {
public static class showb implements ActionListener {
public void actionPerformed(ActionEvent e) {
if (e.getSource() == button1)
// 显示警告信息对话框
JOptionPane.showMessageDialog(null, "A", "错误标志",
JOptionPane.WARNING_MESSAGE);
else if (e.getSource() == button2)
JOptionPane.showConfirmDialog(null, "B", "确认",
JOptionPane.YES_NO_OPTION);
else if (e.getSource() == button3)
JOptionPane.showInputDialog(null, "C", "输入性息",
JOptionPane.INFORMATION_MESSAGE);
}
}

// 声明按钮面板和窗口
private static JButton button1, button2, button3;
private static JFrame f;
private static JPanel p;

public static void main(String[] args) {
f = new JFrame("显示按钮");
p = new JPanel();
button1 = new JButton("A");
button2 = new JButton("B");
button3 = new JButton("C");
// 注册事件监听器
button1.addActionListener(new showb());
button2.addActionListener(new showb());
button3.addActionListener(new showb());
// 添加按钮到面板
p.add(button1);
p.add(button2);
p.add(button3);
// 添加面板到窗口
f.getContentPane().add(p);
f.setSize(200, 200);
f.setVisible(true);
}

}

错误改好了
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式