java72-GUL流式布局管理器


//面向对象思想,流式管理布局器
import java.awt.*;
import javax.swing.*;
public class test07 extends JFrame {
    JButton[] an={null,null,null,null,null,null,null,null};//把需要的组件定义在这里
    public  static void main(String[] args){
        test07 lx1=new test07();//主函数调用即可
    }
    //定义一个构造器
    public  test07(){
        an[0]=new JButton("苹果");
        an[1]=new JButton("香蕉");
        an[2]=new JButton("李子");
        an[3]=new JButton("梨子");
        an[4]=new JButton("栗子");
        an[5]=new JButton("哈密瓜");
        an[6]=new JButton("西瓜");
        an[7]=new JButton("花生");
        this.setLayout(new FlowLayout());
       // this.setLayout(new FlowLayout(FlowLayout.LEFT));靠左
        //添加布局管理器,以免添加出现错误,由于java默认的边界布局管理器
 
        this.add(an[0]);
        this.add(an[1]);
        this.add(an[2]);
        this.add(an[3]);
        this.add(an[4]);
        this.add(an[5]);
        this.add(an[6]);
        this.add(an[7]);
        this.setTitle("歌谣");
        //设置初始位置
        this.setLocation(100,100);
        //设置大小
        this.setSize(180,180);
        //释放窗口关闭的资源,这个要写对
        this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        //显示界面
        this.setVisible(true);
        //不可动
        this.setResizable(false);
        //1继承jframe类
        //2在最上方定义组件
        //3在构造方法中创建组件
        //4在构造方法添加组件
        //5设置窗体属性
        //6显示窗体
        //7在主函数创建对象
    }
}
运行结果

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值