std::vectorcard;
class Information
{ ...... };
Information *Search()
{
int i=1;
string tempname;
cout<<"請輸入姓名:";
cin>>tempname;
Information * temp;
temp=card.begin();
//無法從“std::_Vector_iterator<_Myvec>”轉換///為“Information *”
while(i<=card.size())
{
if((temp->Get_Name())==tempname)
{ return temp; }
temp++;
i++;
}
return NULL;
}
temp=card.begin();
//無法從“std::_Vector_iterator<_Myvec>”轉換///為“Information *”
請問如何很正
begin返回的是迭代器,不能直接賦值給Information指針。
下面的循環查找邏輯也錯了,可以用下面一種寫法
Information *temp = NULL;
std::vector<Information*>::iterator it = card.begin();
while(it < card.end())
{
temp = *it;
if((temp->Get_Name()) == tempname)
{
return temp;
}
++it;
}
return NULL