鱼
鱼片干子
Unregistered / Unconfirmed
GUEST, unregistred user!
我在一个类(继承于Component)中定义它的构造函数,并向该构造函数传递一个Image
类型的数据vimg . 该类有一个私有(private)的Image类型的属性background, 该构造函数中有
如下一段代码 :
....
background=createImage(width,height);
* Graphics backgroundg=background.getGraphics();
backgroundg.drawImage(vimg,0,0,this);
调试的时候发现,当执行到星号处的时候(Graphyics backgroundg=....语句) 会产生
nullpointerexception ,是什么原因???我想拷贝vimg的部分图象到background中,应该用
什么方法?????请指教!!!!!!!!!!!!!!!
类型的数据vimg . 该类有一个私有(private)的Image类型的属性background, 该构造函数中有
如下一段代码 :
....
background=createImage(width,height);
* Graphics backgroundg=background.getGraphics();
backgroundg.drawImage(vimg,0,0,this);
调试的时候发现,当执行到星号处的时候(Graphyics backgroundg=....语句) 会产生
nullpointerexception ,是什么原因???我想拷贝vimg的部分图象到background中,应该用
什么方法?????请指教!!!!!!!!!!!!!!!