Привет, ребята, я пытаюсь перегрузить ifstream и ofstream, но без каких-либо успехов.C++ ifstream и поток перегрузки оператора чтения из файла
Заголовочный файл:
#include <iostream>
#include <fstream>
using namespace std;
class Complex
{
private:
double real;
double imaginary;
public:
//constructors
Complex();
Complex(double newreal, double newimaginary);
~Complex();
//setter
void setReal(double newreal);
void setImaginary(double newimaginary);
//getter
double getReal();
double getImaginary();
//print
void print();
//methods
Complex conjugate();
Complex add(Complex c2);
Complex subtraction(Complex c2);
Complex division(Complex c2);
Complex multiplication(Complex c2);
friend ifstream& operator >> (ifstream& in, Complex &c1)
{
in >> c1;
return in;
}
};
Тестовый файл:
#include <iostream>
#include <fstream>
#include <string>
#include "Complex2.h"
using namespace std;
int main()
{
Complex c1;
ifstream infile;
infile.open("in1.txt");
cout << "Reading from the file" << endl;
infile >> c1;
// write the data at the screen.
infile.close();
return 0;
}
Я не думаю, что файл каст был важен, так как файл заголовка содержит ifstream.
Everytime я запустить эту программу, я получаю эту ошибку:
Reading from the file
Segmentation fault (core dumped)
Я не знаю, как это исправить.
спасибо.
'in >> c1;' просто рекурсивно вызывается для определения функции оператора до тех пор, пока не исчерпается стек. –