JAVA paintComponent(Graphics g)绘图问题,这个方法所在的类继承于JPanel类,代码如下
protectedvoidpaintComponent(Graphicsg){super.paintComponent(g);//Gettheappropriatesiz...
protected void paintComponent(Graphics g) {
super.paintComponent(g);
// Get the appropriate size for the figure
int width = getWidth();
int height = getHeight();
g.drawLine(10, 10, width - 10, height - 10);
}
请问上面的getWidth() 和 getHeight()这两个方法获的是哪个组件的高度和宽度 展开
super.paintComponent(g);
// Get the appropriate size for the figure
int width = getWidth();
int height = getHeight();
g.drawLine(10, 10, width - 10, height - 10);
}
请问上面的getWidth() 和 getHeight()这两个方法获的是哪个组件的高度和宽度 展开
展开全部
getWidth() == this.getWidth() 方法调用会默认传参this 所以是当前对象
追问
如果一个JFrame的大小为(250, 300),并且用这个方法画了一个圆,那么getWidth()和getHeight()的大小分别是多少。
追答
getWidth()就是拿到当前对象的宽度
好比你写了一个类 继承了JFrame 在构造方法里写 setSize()
就是给当前创建的对象赋值
什么对象调你这个方法 当前就是什么对象
你可以去查查this的一些说明文档
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询