0

我正在用 VC++ 编写程序。在这里,我声明类 Product 和 Client。在客户端中,我使用了一个函数列表 initProduct(),其中 list::iterator i; 已使用。我无法使用迭代器显示列表。这是我的代码:

#include "StdAfx.h"
#include <iostream>
#include <string>
#include <list>
#include <iterator>
using namespace std;
class Product
{
    int item_code;
    string name;
    float price;
    int count;
        public:
    void get_detail()
    {
        cout<<"Enter the details(code,name,price,count)\n"<<endl;
        cin>>item_code>>name>>price>>count;
    }

};

class Client
{
public:

    list<Product> initProduct()
    {
        char ans='y';
        list<Product>l;
        list<Product>::iterator i;
        while(ans=='y')
        {
            Product *p = new Product();
            p->get_detail();
            l.push_back(*p);
            cout<<"wanna continue(y/n)"<<endl;
            cin>>ans;
        }
        cout<<"*******"<<endl;

        for(i=l.begin(); i!=l.end(); i++)
             cout << *i << ' ';    //ERROR no operator << match these operand
        return l;
    }
};
int main()
{
    Client c;
    c.initProduct();
    system("PAUSE");
}
4

3 回答 3

3

您必须实现以下功能

class Product {
// ...
    friend std::ostream& operator << (std::ostream& output, const Product& product)
    {
        // Just an example of what you can output
        output << product.item_code << ' ' << product.name << ' ';
        output << product.price << ' ' << product.count;
        return output;
    }
// ...
};

您将函数声明为类的朋友,因为它必须能够访问 a 的私有属性Product

于 2013-07-03T10:52:46.320 回答
2

您需要生成一个ostream& operator<<(ostream& os, const Product& product)打印您要显示的信息的文件。

于 2013-07-03T10:33:54.500 回答
0

如果您正在使用C++11,您可以使用auto

for(auto it : Product)
    {
        cout << it.toString();
    }

但你必须实现它toString(),它将显示你想要的所有信息

于 2013-07-03T10:36:05.283 回答