【发布时间】:2013-10-15 19:12:19
【问题描述】:
我想知道如何检查照片是否在照片集中。我通过照片得到了
PhotoList<Photo> PL = Pface.recentlyUpdated(thisDate, null, 0, 0);
for (int i = 0;i<PL.size();i++)
{
Photo p = PL.get(i); //want to check that if 'p' is present in any set or not . If present want to get the name.
}
【问题讨论】: