import java.awt.*;
import javax.swing.*;
import javax.swing.event.*;
import java.awt.event.*;
public class JiaFa extends JFrame implements ActionListener
{
private JTextField jt1=new JTextField(5);
private JTextField jt2=new JTextField(5);
private JTextField result=new JTextField(5);
private JButton btn=new JButton("=");
JLabel label=new JLabel("+");
public void init(){
Container cp=getContentPane();
cp.setLayout(new FlowLayout(FlowLayout.LEFT));
cp.add(jt1);
cp.add(label);
cp.add(jt2);
cp.add(btn);
cp.add(result);
setSize(300,80);
setVisible(true);
btn.addActionListener(this);
}
public void actionPerformed(ActionEvent e)
{
if(e.getSource()==btn)
{
int a=Integer.parseInt(jt1.getText());
int b=Integer.parseInt(jt2.getText());
int c=a+b;
String str=String.valueOf(c);
result.setText(str);
}
}
public static void main(String args[])
{
JFrame cp=new JiaFa();
cp.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
}
----------------解决方案--------------------------------------------------------
不知道你发这个干什么
----------------解决方案--------------------------------------------------------
是你的程序是设计一个窗口,而运行不能显示,还是你是写一个让窗口不能显示的程序?
----------------解决方案--------------------------------------------------------
这个我知道啊,那要怎么样让它显示出来啊,就是因为显示不了我才问你们的嘛
----------------解决方案--------------------------------------------------------
调用一个你的init方法就可以了
----------------解决方案--------------------------------------------------------
什么意思啊,原谅我的愚蠢
----------------解决方案--------------------------------------------------------
呵呵,努力就可以了
----------------解决方案--------------------------------------------------------
能不能帮我改一下看看啊
----------------解决方案--------------------------------------------------------
加一个
public JiaFa(){
init();
}
就OK了
----------------解决方案--------------------------------------------------------
import java.awt.*;
import javax.swing.*;
import javax.swing.event.*;
import java.awt.event.*;
public class JiaFa extends JFrame implements ActionListener
{
private JTextField jt1=new JTextField(5);
private JTextField jt2=new JTextField(5);
private JTextField result=new JTextField(5);
private JButton btn=new JButton("=");
JLabel label=new JLabel("+");
public void into(){
Container cp=this.getContentPane();
cp.setLayout(new FlowLayout(FlowLayout.LEFT));
cp.add(jt1);
cp.add(label);
cp.add(jt2);
cp.add(btn);
cp.add(result);
btn.addActionListener(this);
this.setSize(300,80);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
this.setVisible(true);
}
public void actionPerformed(ActionEvent e)
{
int a=Integer.parseInt(jt1.getText());
int b=Integer.parseInt(jt2.getText());
int c=a+b;
String str=String.valueOf(c);
result.setText(str);
}
public static void main(String args[])
{
JiaFa jf=new JiaFa ();
jf.into();
}
}
你试试 看!界面应该可以出来了!
----------------解决方案--------------------------------------------------------