0

我在重载 << 运算符时遇到问题。一切都可以打印并正常输入,但是当我尝试返回 ostream 时,出现此错误:

表达式:_BLOCK_TYPE_IS_VALID(pHead->nBlockUse)

我还已经在这个项目中重载了另一个 << 运算符,它返回了一个 ostream 就好了。以下代码中未使用此运算符。这是代码:

#include "header1.h"
#include <iostream>
using namespace std;

class Car
{
public:
    friend class Extras;
    friend int main();
    friend ostream& operator<< (ostream& os, const Car& in);
    Car();
    Car(string in_name, int in_year, string in_color, float in_cost);
private:
    string name, color;
    int year, extr_num;
    float cost;
    Extras  *extr;
};
int main()
{
    Car c1;
    cout << c1;
    return 0;
}

//Default Constructor
Car::Car()
{
    name = "TEMP";
    color = "BLUE";
    year = 0;
    cost = 0;
    extr = new Extras[3];
    extr_num = 0;
}

//Constructor
Car::Car(string in_name, int in_year, string in_color, float in_cost)
{
    name = in_name;
    color = in_color;
    year = in_year;
    cost = in_cost;
    extr = new Extras[3];
    extr_num = 0;
}

//Overloaded << operator for Car class

//This function is the one that fails.
ostream& operator<< (ostream& os, const Car& in)
{
    os.precision(2);
    os << in.name << ", " << in.year << ", " 
        << in.color << ", $"<< in.cost << ", ";
    os << "extras include: ";
    os << endl;
    return os;  //Line of code in question
}

另一个头文件中的这段代码工作得很好:

ostream& operator<< (ostream& os, Extras const &in)
{
    os << in.ex_list;
    return os;
}

在返回之前,一切都打印到屏幕上。这两个函数在我看来是一样的,有更多 C++ 经验的人可以告诉我吗?

4

2 回答 2

1

显示的代码中没有任何内容会导致您描述的问题。“_BLOCK_TYPE_IS_VALID(pHead->nBlockUse)”错误表明堆在较早的时候已损坏,它在您的 return 语句中被检测到,但与您的操作符中的代码无关<<

于 2011-02-14T23:47:45.667 回答
0

你已经冲洗了你的堆。它可能与当前运行的代码有任何关系,也可能没有任何关系。尽管我将从使用原始指针开始,但在您决定向我们展示的内容中看不到任何立即明显的东西会导致它。

于 2011-02-14T23:42:30.817 回答