赞
踩
前面学过了面向对象基本概念、面向对象基本特征、Java基本包和API:异常、多线程、IO等。
Swing:java中的一个包,负责开发GUI程序
GUI:图形用户界面,一般指可视化桌面系统中的应用程序
Windows:将应用程序从字符界面拓展到图形界面
使用的包:javax.swing包
例:在桌面出现一个界面,标题是:HelloWorld
显示:setVisible函数
Shows or hides this Window depending on the value of parameter b.
根据参数b的值显示或隐藏此窗口。
(1)框架界面: javax.swing.JFrame
import javax.swing.JFrame;
class GUI1{
public static void main(String[] args) throws Exception {
JFrame jfm = new JFrame("HelloWorld");
jfm.setSize(600,400);
jfm.setLocation(300,200);
jfm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE );
jfm.setVisible(true);
}
}
改进(1):
import javax.swing.JFrame;
class GUI3{
public static void main(String[] args) throws Exception {
JFrame jfm = new JFrame("HelloWorld");
jfm.setSize(600,400);
jfm.setLocation(300,200);
jfm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE );
jfm.setVisible(true);
}
}
改进(2):
import javax.swing.JFrame;
class GUI4 extends JFrame{
public GUI4(){
super(
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。