次のコードではVector
、同じ星座を持つ人を取得する方法があります。persoane
ですVector<Persoana>
。私NullPointerException
はif条件でaを取得し続けます(persoane
明らかにnullではありません)。理由がわかりません。どんな助けでも大歓迎です
public Vector<Persoana> cautaDupaZodie(String zodie)
{
Vector<Persoana> rezultat= new Vector<Persoana>();
for(int i=0; i<persoane.size(); i++)
{
if(persoane.get(i).getData().getZodie().equals(zodie)) //the exception occurs here
{
rezultat.add(persoane.get(i));
}
}
return rezultat;
}