如何使用“where”参数在数组末尾添加图片?

时间:2012-12-08 06:50:06

标签: java

此方法应该将图片插入where参数值给出的位置。

我对如何使用where参数感到困惑。

这是我到目前为止所做的:

public boolean addPicture( Picture thePicture, int where )
{
    int index = where; 
    while( index < pictArray.length )
    {
        pictArray[pictArray.length - 1] = thePicture;
    }
    return true;
}

1 个答案:

答案 0 :(得分:0)

如果您已经知道添加图片的位置,只需将其添加到图片阵列Index-1位置上的该位置即可。这是因为java中的索引从0开始。但是我们作为人类从1开始。

如果要根据用户添加到第3个位置。他在Where变量中输入3。 Java必须将它存储在数组的索引2上。

PicArray[index-1]=picture;