当前位置: 代码迷 >> J2SE >> 相干重写JPanel中paintComponent方法,解释
  详细解决方案

相干重写JPanel中paintComponent方法,解释

热度:45   发布时间:2016-04-24 00:36:30.0
有关重写JPanel中paintComponent方法,解释
protected void paintComponent(Graphics g){
super.paintComponent(g);//调用父类的方法清空
Color c = g.getColor();
g.setColor(Color.red);
g.fillOval(x, y, 30, 30);
g.setColor(c);
x += 5; //改变坦克坐标,实现移动效果
}
请大家帮忙解释下这段代码

------解决方案--------------------
几个参数有少许关联性的。。