Home  >  Article  >  Java  >  What does box mean in java

What does box mean in java

silencement
silencementOriginal
2019-05-30 10:28:038667browse

What does box mean in java

public class Box extends JComponent implements Accessible

Use the BoxLayout object as a lightweight container for its layout manager.

Box provides several class methods useful for containers using BoxLayout (even non-Box containers).

The Box class can create several invisible components that affect layout: glue, struts and rigid areas. If all components contained by the Box have a fixed size, you can use the glue component (returned by createGlue) to control the position of the components. If you want to have a fixed amount of space between two components, try using strut (createHorizontalStrut or createVerticalStrut). If you need an invisible component that always takes up the same amount of space, you can get it by calling createRigidArea.

If you want to learn JAVA well, you must do more exercises while firmly grasping the basics.

The above is the detailed content of What does box mean in java. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn