使用java中的Graphics类时候,我继承了JFrame类,然后定义Graphics时,Graphics g=getGraphisc();出错 15

提示出错,Cannotmakeastaticreferencetothenon-staticmethodgetGraphics()fromthetypeJFrame。如果... 提示出错,Cannot make a static reference to the non-static method getGraphics() from the type JFrame。如果直接定义Graohics g=new Graphisc()时候又提示Cannot instantiate the type Graphics 怎么解决,急,想要用drawLine方法但是不能用啊 展开
 我来答
百度网友6181d0f
2015-09-22 · TA获得超过200个赞
知道小有建树答主
回答量:105
采纳率:100%
帮助的人:64.8万
展开全部
继承JFrame类以后,实现pant方法,就可以拿到Graphics了
更多追问追答
追问
怎么实现pant方法,用g还是用JFrame的对象?
追答
public class TestMain extends JFrame {

/**
 * 
 */
public TestMain() {
this.setDefaultCloseOperation(EXIT_ON_CLOSE);
this.setVisible(true);
this.setSize(200, 200);
}

@Override
public void paint(Graphics g) {
g.setColor(new Color(0xffffff));
g.fillRect(0, 0, this.getWidth(), this.getHeight());
g.setColor(new Color(0));
render(g);
}
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式