07/11/09 00:43:54
>>573
アホなクラス名とまったく理解してないコードを直しといた
import java.awt.*;
import javax.swing.*;
class MyFrame extends JFrame {
private JButton jButton1;
MyFrame() {
jButton1 = new JButton("Hello");
this.getContentPane().add(jButton1, BorderLayout.CENTER);
this.setTitle("JButton");
this.pack();
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
public static void main(String args[]) {
MyFrame frame = new MyFrame();
frame.setVisible(true);
}
}