Java 中 setBounds() 方法有什么作用?


布局管理器 用于自动决定添加组件的位置和大小。在没有布局管理器的情况下,必须手动设置组件的位置和大小。setBounds() 方法用于在这种情况下设置位置和大小。要手动指定组件的位置和大小,框架的布局管理器可以设置为 null

setBounds()

setBounds() 方法需要四个参数。前两个参数是组件左上角xy 坐标,第三个参数是组件的宽度,第四个参数是组件的高度

语法

setBounds(int x-coordinate, int y-coordinate, int width, int height)

示例

import javax.swing.*;
import java.awt.*;
public class SetBoundsTest {
   public static void main(String arg[]) {
      JFrame frame = new JFrame("SetBounds Method Test");
      frame.setSize(375, 250);
      // Setting layout as null
      frame.setLayout(null);
      // Creating Button
      JButton button = new JButton("Hello Java");
      // Setting position and size of a button
      button.setBounds(80,30,120,40);
      frame.add(button);
      frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
      frame.setLocationRelativeTo(null);
      frame.setVisible(true);
   }
}

输出

更新于: 2023年9月13日

35K+ 浏览量

启动您的 职业生涯

通过完成课程获得认证

开始学习
广告