将矢量数据写入文件的C ++问题

时间:2011-09-09 10:08:28

标签: c++ text-files

我想将矢量v的内容写入文件。问题是不是内容而是地址将放在文本文件中。

当我写'pos inplace of& pos时,我收到错误:错误C2679:binary'<<' :找不到哪个运算符采用了'entry'类型的右手操作数

它是如何正确的?

#include <iostream>
#include <fstream>
#include <string>
#include <vector>
#include <limits>

/*
Data.txt 

John
6543
23

Max
342
2

A Team
5645
23
*/

struct entry
{
    // passengers data
    std::string name;
    int weight; // kg
    std::string group_code; 
};

void reservations(std::vector<entry> v)
{
    std::ofstream outfile;
    outfile.clear();
    outfile.open("reservations.txt");
    // print data in vector
    std::vector<entry>::iterator pos;
        for (pos = v.begin(); pos!= v.end();++pos)
        {
            outfile << &pos << std::endl;
            std::cout << &pos << std::endl;
        }
    outfile.close();
}

entry read_passenger(std::ifstream &stream_in)
{
    entry passenger;
    if (stream_in)
    {
        std::getline(stream_in, passenger.name); 
        stream_in >> passenger.weight;
        stream_in.ignore(std::numeric_limits<std::streamsize>::max(), '\n');
        std::getline(stream_in, passenger.group_code);
        stream_in.ignore(std::numeric_limits<std::streamsize>::max(), '\n');
        return passenger;
    }

    return passenger; 
}

int main(void)
{
    std::ifstream stream_in("data.txt"); 
    std::vector<entry> v; // contains the reservations
    std::vector<entry> a; // contains the cancellations
    const int limit_total_weight = 10000;   // kg
    int total_weight = 0;                   // kg
    entry current;
    while (stream_in)
    {
        current = read_passenger(stream_in);
        if (total_weight + current.weight >= limit_total_weight)
        {
            // push data (cancellations) to vector
            a.push_back(current);
        }
        else
        {
            total_weight = total_weight + current.weight;
            // push data (reservations) to vector
            v.push_back(current);
        }
    }
    reservations(v); // write reservations to file
    std::cout << "Rest " << limit_total_weight - total_weight << "kg" <<std::endl;
    return 0;
}

6 个答案:

答案 0 :(得分:4)

您应该为operator <<

重载entry
std::ostream& operator << (std::ostream& o, const entry& e) 
{
   return o << e.name 
     << " " << e.weight 
     << " " << e.gruop_code;
}

现在你可以写:

outfile << *pos << std::endl;
std::cout << *pos << std::endl;

答案 1 :(得分:0)

首先你编写了一个指针,然后你没有告诉C ++如何在文本中表示entry

为其创建operator<<重载。

答案 2 :(得分:0)

您必须执行outfile << pos->name << " " << pos->weight << /* etc */或实施输出运算符operator<<

看起来像

   std::ostream& operator<<(std::ostream& os, const entry&) {
        return os << entry.name << " " << entry.weight << " " << entry.group_code;
   }

根据需要格式化。

答案 3 :(得分:0)

由于entry是一个普通的结构,并且您没有定义任何operator<<方法将其内容写入输出流,编译器会在您尝试写出*pos时抱怨直接

要么你需要定义一个合适的operator<<方法,要么逐个写出结构的成员,比如

        outfile << pos->name << std::endl;
        outfile << pos->weight << std::endl;
        outfile << pos->group_code << std::endl;

答案 4 :(得分:0)

尝试类似:

std::ostream& operator<<(std::ostream& os,const entry& toPrint)
{
  os << "name :" << toPrint.name << '\n';
  os << "weight :" << toPrint.weight << "(kg) \n";
  os << "group_code :" << toPrint.group_code << '\n';
  return os;
}

您也可以将预约功能的签名更改为

void reservations(const std::vector<entry>& v)

答案 5 :(得分:0)

您的输出看起来像当前代码的地址的原因是 因为你输出了迭代器的地址。

你得到错误的原因“没有找到哪个运营商需要一个 'entry'类型的右手操作符是因为没有<<entry作为右手操作数的运算符。您可以 轻松定义一个:

std::ostream&
operator<<( std::ostream& dest, entry const& obj )
{
    dest << obj.name;
    return dest;
}

但这有点专业;在其他情况下,你可能想要 输出entry的其他字段。实际上,operator<<是经典的 for entry将输出所有相关字段。另一种解决方案 将定义变换器功能对象,并使用它:

struct EntryToName
{
    std::string operator()( entry const& obj ) const
    {
        return obj.name;
    }
};

然后在reservations

std::transform( 
    v.begin(), v.end(),
    std::ostream_iterator<std::string>( outfile, "\n" ),
    EntryToName() );

而BTW,通常认为通过const传递向量是优选的 参考,而不是价值。