使用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方法但是不能用啊
展开
1个回答
展开全部
继承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);
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询