0

我正在学习如何使用向量,并且正在编写一个简单的程序,该程序获取一些信息并将其放在向量上,然后将其迭代回来。我的来源是

int main ()
{

    int answer= 1;
    int decide;
    int vectCount = 0;
    vector<animal> pet;

    while(answer > 0)
    {    

        pet.push_back(animal());
        cout << "enter the name of the pet" << endl;
        getline(cin,pet[vectCount].name);

            cout << "Please enter the age of the pet" << endl;
            cin >> pet[vectCount].age;

         cout << "enter the weight of the pet" << endl;
         cin >> pet[vectCount].weight;


        do
        {
        cout << "Please enter the size of the pet S/M/L" << endl;
        cin >> pet[vectCount].size;
        }while(pet[vectCount].size != 'L' 
        && pet[vectCount].size != 'M' 
        && pet[vectCount].size != 'S');

        answer = question(decide);

    }
    vector<animal>::iterator i;
    for(i = pet.begin(); i != pet.end(); ++i)
    {

        cout << "The name of the pet is " << *i->name << endl;
        cout << "The age of the pet is " << *i->age << endl;
        cout << "The weight if the pet is " << *i->weight << endl;
        cout << "The size of your pet is " << *i->size;
        if(*i->size == 'S')
        cout << "(-): meow" <<endl;
        if(*i->size == 'M')
        cout << "(---): woof" <<endl;
        if(*i->size == 'L')
        cout << "(------): moooo" <<endl;            
    }
    cout << "Exiting the program" << endl;


    cin.get();
    return 0;
}

我得到的错误是:

no match for 'operator*' in '*(&i)->__gnu_cxx::__normal_iterator<_Iterator, _Container>::operator-> [with _Iterator = animal*, _Container = std::vector<animal, std::allocator<animal> >]()->animal::name'

谁能帮我找到问题的根源?

4

4 回答 4

4

这个:

*i->size

应该:

i->size

运算符(在您的->情况下等于(*i).size)将自动服从i

于 2013-04-16T01:32:07.393 回答
0

您收到该错误是因为编译器正在尝试执行以下操作:

*(i->name)

这是试图取消引用i->name,并且由于i是指向对象的指针name,它将失败。

而你想要的是:

(*i).name

或者

i->name

i在尝试将名称从结构中取出之前将取消引用。

于 2013-04-16T01:33:03.743 回答
0

尝试通过更改删除“*”

 cout << "The name of the pet is " << *i->name << endl;

 cout << "The name of the pet is " <<  i->name << endl;

或者

 cout << "The name of the pet is " <<  (*i).name << endl;
于 2013-04-16T01:36:19.720 回答
0

你应该使用:

 i -> size

或者

 (*i).size

但不是你使用的方式。

于 2013-04-16T01:33:36.363 回答