重载操作员帮助?

时间:2011-10-20 11:38:00

标签: c++ operator-overloading

一如既往,我对C ++还是比较陌生,而且我还没有完全掌握这个术语,所以我为提前听起来模糊而道歉!

我的问题是我很难理解为什么我的while循环似乎在我的重载运算符函数中停止了我的其余方法;

#include "sample.h"

#include <iostream>
#include <vector>
#include <cstdlib>

using namespace std;

sample::sample(vector<double> doubles){}

sample::sample() {}

ostream& operator<< (ostream &out, sample &sample)
{
    out << "<" << sample.n << ":";
    return out;
}

istream& operator>> (istream &in, sample &sample)
{
    char firstChar;
    in >> firstChar;

    if(firstChar != '<'){
        cout << "You've not entered the data in a valid format,please try again!1 \n";
        exit(1);
    }

    int n;
    in >> n;
    sample.n = n;

    char nextChar;
    in >> nextChar;
    if(nextChar != ':'){
        cout << "You've not entered the data in a valid format,please try again!2 \n";
        exit(1);
    }

    vector<double> doubles;
    double number;
    while (in >> number){
        doubles.push_back(number);
        cout << in << " " << number;
    }
    in >> lastChar;

    return in;
}

int main(void)
{
    sample s;
    while (cin >> s){
        cout << s << "\n";
    }

    if (cin.bad())
      cerr << "\nBad input\n\n";

    return 0;
}

我的输入就像是;

&lt; 6:10.3 50 69.9&gt;

我试图将':'之后的所有双打变成一个向量,如果它们是整数,我可以做,但是一旦'''。进入似乎停止了。

如果我只输入整数,它似乎也在while(in >> number)找到所有数字后停止,这很好,但我的main函数中的cout<<命令似乎不起作用!

我哪里出错?

2 个答案:

答案 0 :(得分:1)

您必须遵守标准流惯用法:每个流都可以隐式转换为bool(或void指针),以允许像if (in >> n)这样的检查来查看操作是否成功。首先,您必须确保您的运营商符合这一点(如果提取成功,确保流“良好”)。

其次,当您编写类似while (in >> x) { /*...*/ }的循环时,在循环终止后,您已经知道您的流不再好了。因此,在返回之前,您必须在其上调用clear()

也许是这样的:

std::istream& operator>> (std::istream &in, sample &sample)
{
  char   c;
  int    n;
  double d;
  std::vector<double> vd;

  if (!(in >> c)) { return in; }                             // input error
  if (c != '>')   { in.setstate(std::ios::bad); return in; } // format error

  if (!(in >> n)) { return in; }                             // input error

  if (!(in >> c)) { return in; }                             // input error
  if (c != ':')   { in.setstate(std::ios::bad); return in; } // format error

  while (in >> d)
  {
    vd.push_back(d);
  }

  in.clear();

  if (!(in >> c)) { return in; }                             // input error
  if (c != '>')   { in.setstate(std::ios::bad); return in; } // format error

  state.n = n;
  state.data.swap(vd);

  return in;
}

请注意,如果整个输入操作成功,我们只会修改sample对象。

答案 1 :(得分:0)

cout << in << " " << number;
你可能意味着

cout << " " << number;

或其他什么