日期:2014-05-20 浏览次数:20765 次
import javax.swing.*; public class Test { public static void main(String[] args) { new Frame(); //下面还有很多语句…… } } class Frame extends JFrame{ Frame(){ setVisible(true); setSize(300,300); JLabel j = new JLabel("hhhhh"); JButton jj =new JButton("x"); add(j); add(jj); } }