当前位置: 代码迷 >> J2SE >> 请教insets的有关问题
  详细解决方案

请教insets的有关问题

热度:56   发布时间:2016-04-23 20:29:41.0
请问insets的问题
请问下这个insets类作用是什么?它是什么设计模式 Insets insets=getInsets();?
------解决方案--------------------
Insets 对象是容器边界的表示形式;
它指定容器必须在其各个边缘留出的空间;
这个空间可以是边界、空白空间或标题。

这是API上的内容;

以前也用过这个类,但不经常用:
JButoon button = new JButton("按钮");  
Insets insets = new Insets(2,4,2,4);  //设置组件间的间距(上 右 下 左)
button.setMargin(insets); 


至于是什么设计模式,看源代码也没看出了所以然来;