java 在 panel中画图 (线) 出现空指针错误。

publicclassYardextendsFrame{publicstaticfinalintROW=30;publicstaticfinalintCOLU=50;pu... public class Yard extends Frame { public static final int ROW = 30; public static final int COLU = 50; public static final int SIZE = 10; Image offScreemImage = null; Panel pp = new Panel(); public static void main(String[] args) { new Yard().launch(); } public void launch(){ Panel pp = new Panel(); this.setLayout(null); pp.setBounds(5, 30, COLU*SIZE, ROW*SIZE); this.setBounds(100,100, COLU*SIZE+10, ROW*SIZE+30); this.add(pp,BorderLayout.SOUTH); this.setVisible(true); PaintTheard pt = new PaintTheard(); Thread t = new Thread(pt); t.start(); } public void paint(Graphics g){ Graphics p = pp.getGraphics(); //这里在 拿不到panel的 Graphics 。 Color c = p.getColor(); p.setColor(Color.GRAY); p.drawRect(0, 0, COLU*SIZE, ROW*SIZE); p.setColor(Color.BLUE); for(int i = 1;i<ROW;i++){ p.drawLine(0, i*SIZE, COLU*SIZE, i*SIZE); } for(int i = 1;i<COLU;i++){ p.drawLine(i*SIZE,0 , i*SIZE, ROW*SIZE); } p.setColor(c); } public void update(Graphics p){ if(offScreemImage == null){ return; } Image offImage = createImage(COLU*SIZE, ROW*SIZE); Graphics goffGraphics = offScreemImage.getGraphics(); paint(goffGraphics); p.drawImage(offScreemImage, 0, 0, null); } class PaintTheard implements Runnable{ public void run() { repaint(); try { Thread.sleep(50); } catch (InterruptedException e) { e.printStackTrace(); } } }} 展开
 我来答
  • 你的回答被采纳后将获得:
  • 系统奖励15(财富值+成长值)+难题奖励10(财富值+成长值)+提问者悬赏5(财富值+成长值)
生活he家
2014-09-01 · 一个属于大家的搬运工
生活he家
采纳数:1536 获赞数:6828

向TA提问 私信TA
展开全部
错误代码贴一下
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
405349687
2014-09-01 · TA获得超过1251个赞
知道小有建树答主
回答量:725
采纳率:100%
帮助的人:478万
展开全部
pp 全局变量和局部变量混用
Panel pp = new Panel();出现两次
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式