Java高手进来帮小弟解释解释

GridBagLayoutlayout=newGridBagLayout();getContentPane().setLayout(layout);addComponen... GridBagLayout layout = new GridBagLayout();
getContentPane().setLayout(layout);
addComponent(layout, operation, 0, 0, 4, 1);
addComponent(layout, numbers[1], 1, 0, 1, 1);
...............
.................
.................
private void addComponent(GridBagLayout layout, Component component, int row, int col, int width, int height)
{
GridBagConstraints constraints = new GridBagConstraints();
constraints.fill = GridBagConstraints.BOTH;
constraints.insets = new Insets(10, 2, 10, 2);
constraints.weightx = 100;
constraints.weighty = 100;
constraints.gridx = col;
constraints.gridy = row;
constraints.gridwidth = width;
constraints.gridheight = height;
layout.setConstraints(component, constraints);
if (component instanceof JButton)
((JButton)component).addActionListener(this);
getContentPane().add(component);
}

其中private void addComponent()是个方法,里面的内容什么意思?addComponent(layout, operation, 0, 0, 4, 1)又是什么意思?
最好详细解释一下
展开
 我来答
beeshow00
2011-04-29 · 超过42用户采纳过TA的回答
知道答主
回答量:99
采纳率:58%
帮助的人:60.9万
展开全部
该方法在Javax.swing 里面有的,你程序对它进行重写,意思是l使用指定的对齐方式和大小将 Component 添加到此 ParallelGroupl:ayout是定义的对齐方式,component就是容器,而后面的四个int的值就是指定的位置和大小 行列宽高
别致且昂扬灬饼子3985
2011-04-29 · 超过14用户采纳过TA的回答
知道答主
回答量:65
采纳率:0%
帮助的人:43.5万
展开全部
。。下个JDK API 1.6.0中文版,对着看,什么就懂了。学习java,就要多看API。真的,很容易。特别是在看代码时候,很有用。
追问
这包确实很好。真多
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式