该方法应该是在where
参数值给定的位置插入图片。
我对如何使用where
参数感到困惑。
这是我到目前为止所拥有的:
public boolean addPicture( Picture thePicture, int where )
{
int index = where;
while( index < pictArray.length )
{
pictArray[pictArray.length - 1] = thePicture;
}
return true;
}