此方法应该将图片插入where
参数值给出的位置。
我对如何使用where
参数感到困惑。
这是我到目前为止所做的:
public boolean addPicture( Picture thePicture, int where )
{
int index = where;
while( index < pictArray.length )
{
pictArray[pictArray.length - 1] = thePicture;
}
return true;
}
答案 0 :(得分:0)
如果您已经知道添加图片的位置,只需将其添加到图片阵列Index-1位置上的该位置即可。这是因为java中的索引从0开始。但是我们作为人类从1开始。
如果要根据用户添加到第3个位置。他在Where变量中输入3。 Java必须将它存储在数组的索引2上。
PicArray[index-1]=picture;