请教关于Java小例子,pack()是什么意思

下面是书上的小例子下面有一行f.pack()是什么意思importjava.awt.*;publicclassExGui{privateFramef;privateBut... 下面是书上的小例子 下面有一行 f.pack() 是什么意思
import java.awt.*;

public class ExGui
{
private Frame f;
private Button b1;
private Button b2;

public static void main(String[] args)
{
ExGui that=new ExGui();
that.go();
}
public void go()
{
f=new Frame("GUI example");
f.setLayout(new FlowLayout());
b1=new Button("Press Me");
b2=new Button("Don't Press Me");
f.add(b1);
f.add(b2);
f.pack();//这一行是什么意思啊
f.setVisible(true);
}
}
展开
 我来答
lydawen
2008-12-02 · TA获得超过3181个赞
知道大有可为答主
回答量:2678
采纳率:50%
帮助的人:1497万
展开全部
建议看一下java文档:

javaDoc:
调整此窗口的大小,以适合其子组件的首选大小和布局。

Java code
/**
* Causes this Window to be sized to fit the preferred size
* and layouts of its subcomponents. If the window and/or its owner
* are not yet displayable, both are made displayable before
* calculating the preferred size. The Window will be validated
* after the preferredSize is calculated.
* @see Component#isDisplayable
*/
public void pack() {
Container parent = this.parent;
if (parent != null && parent.getPeer() == null) {
parent.addNotify();
}
if (peer == null) {
addNotify();
}
Dimension newSize = getPreferredSize();
if (peer != null) {
setClientSize(newSize.width, newSize.height);
}

if(beforeFirstShow) {
isPacked = true;
}

validate();
}
viso81116
2008-12-02
知道答主
回答量:1
采纳率:0%
帮助的人:0
展开全部
窗体自动适应控件大小
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式