我只是重新阅读了该方法应该做什么:
- 在末尾添加给图片,方法将其插入“where”参数值给定的位置。值应介于 0 - nPictsInAlbum
- 为 0 时,图片插入开头,其他图片右移,为图片腾出空间。
- nPictsInAlbum 在末尾添加给定的图片
public boolean addPicture(Picture thePicture, int where) {
int index = where;
while (index < nPictsInAlbum) {
pictArray[index - 1] = thePicture;
}
return true;
}