1. ホーム
  2. c++

[解決済み] error: 'ostream' does not name a type.

2022-01-19 13:16:22

質問

C++で<<と>>演算子をオーバーロードしているが、コンパイルできない。

エラーメッセージは :" error: 'ostream' does not name a type" なぜこのようなエラーが発生するのでしょうか?どうすれば直せますか?

#ifndef COMPLEX_H
#define COMPLEX_H
#include <cstdlib> //exit

#include <istream>
#include <ostream>

class Complex{
    public:
    Complex(void);
    Complex(double a, double b);
    Complex(double a);
    double real() const{ 
        return a;
    }

    double imag() const{
        return b;
    }
    friend ostream& operator<<(ostream& out,const Complex& c);
    friend istream& operator>>(istream& in, Complex& c);


    private:
    double a;
    double b;
};

ostream& operator<<(ostream& out,const Complex& c){
    double a=c.real() , b = c.imag();
    out << a << "+" << b<<"i";
    return out;
}

istream& operator>>(istream& in, Complex& c){
    in >> c.a>> c.b;
    return in;
}
#endif

解決方法は?

使用方法 std::ostreamstd::istream をどこでも使えるようにする。

ostreamistream は名前空間 std