新手学习Java笔记(一)Swing的简单应用

新手学习Java笔记(一)

参考教程:https://blog.csdn.net/xietansheng/article/details/72814531

记下第一天的收获:

import javax.swing.*;

public class Swing01 {

	public static void main(String[] args) {
	
		//创建顶层容器
		JFrame frame = new JFrame("This is title!");//创建窗口
		frame.setSize(800, 600);//设置大小
		frame.setLocationRelativeTo(null);//居中
	    frame.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);//当关闭窗口时结束运行(重点!)
	    
		//创建中间容器
		JPanel pl = new JPanel(null);//创建面板,并设置为 绝对布局
		
		//创建基本组件
		JButton button = new JButton("Test");//创建按钮
		button.setSize(200, 150);//设置大小
		button.setLocation(100, 450);//设置位置
		pl.add(button);//添加按钮至面板
		
		frame.setContentPane(pl);//将面板设置到窗口
		
		frame.setVisible(true);//显示窗口
	}
}

你可能感兴趣的:(#,面向对象程序设计导论,java,swing)