摘要:
1.一个只有一个lable的界面import javax.swing.JFrame;import javax.swing.JLabel;public class reading extends JFrame { public static void main(String[] args) { new reading(); } reading() { JLabel jlbHelloWorld = new JLabel("Hello World"); add(jlbHelloWorld); this.setSiz... 阅读全文