- 论坛徽章:
- 0
|
说下具体情况
我用的是Jbuider 9.0
文件名 aa1.java代码是
package MINE;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
/**
* <p>Title: </p>
* <p>Description: </p>
* <p>Copyright: Copyright (c) 2007</p>
* <p>Company: </p>
* @author not attributable
* @version 1.0
*/
public class aa1
extends JFrame
implements ActionListener {
private JTextField atext, btext, ctext;
private JButton button;
private JLabel label;
private void main(String[] args) {
aa1 frame = new aa1();
frame.createGUI();
frame.setSize(300, 400);
frame.show();
}
private void createGUI() {
Container window = getContentPane();
window.setLayout(new FlowLayout());
atext = new JTextField("1");
window.add(atext);
label = new JLabel("+");
window.add(label);
btext = new JTextField("2");
window.add(btext);
button = new JButton("=");
window.add(button);
button.addActionListener(this);
ctext = new JTextField("c");
window.add(ctext);
}
public void actionPerformed(ActionEvent event){
int a,b,c;
}
}
我不是要运行什么 只是要创建一个界面而已 但是 出来的就是和我要的不一样
怎么办啊 有没有高手叫我怎么用Jbuider啊 都是英文 搞不懂 |
|