identifier quot;ostreamquot; is undefined error(标识符“ostream是未定义的错误)
问题描述
我需要实现一个支持运算符<<的数字类为输出.我有一个错误:标识符ostream"未定义"出于某种原因,尽管我包括并尝试了
i need to implement a number class that support operator << for output. i have an error: "identifier "ostream" is undefined" from some reason eventhough i included and try also
这里是头文件:
数字.h
#ifndef NUMBER_H
#define NUMBER_H
#include <iostream>
class Number{
public:
//an output method (for all type inheritance from number):
virtual void show()=0;
//an output operator:
friend ostream& operator << (ostream &os, const Number &f);
};
#endif
为什么编译器不识别友元函数中的ostream?
why the compiler isnt recognize ostream in the friend function?
推荐答案
您需要使用类所在的命名空间的名称来完全限定名称 ostream
:
You need to fully qualify the name ostream
with the name of the namespace that class lives in:
std::ostream
// ^^^^^
所以你的操作符声明应该变成:
So your operator declaration should become:
friend std::ostream& operator << (std::ostream &os, const Number &f);
// ^^^^^ ^^^^^
或者,您可以在非限定名称 ostream
出现之前使用 using
声明:
Alternatively, you could have a using
declaration before the unqualified name ostream
appears:
using std::ostream;
这将允许您在没有完全限定的情况下编写 ostream
名称,就像在您当前版本的程序中一样.
This would allow you to write the ostream
name without full qualification, as in your current version of the program.
这篇关于标识符“ostream"是未定义的错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:标识符“ostream"是未定义的错误


- Stroustrup 的 Simple_window.h 2022-01-01
- STL 中有 dereference_iterator 吗? 2022-01-01
- 一起使用 MPI 和 OpenCV 时出现分段错误 2022-01-01
- 从python回调到c++的选项 2022-11-16
- 与 int by int 相比,为什么执行 float by float 矩阵乘法更快? 2021-01-01
- 使用/clr 时出现 LNK2022 错误 2022-01-01
- 近似搜索的工作原理 2021-01-01
- 静态初始化顺序失败 2022-01-01
- C++ 协变模板 2021-01-01
- 如何对自定义类的向量使用std::find()? 2022-11-07