gpt4 book ai didi

c++ - 创建一个将 ostream 作为参数并写入该流的打印函数

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:05:11 24 4
gpt4 key购买 nike

我目前正在回答有关 C++ 中运算符重载的练习题。我有一个问题:

创建一个包含 int 的简单类,并将 operator+ 作为成员函数重载。还提供一个 print() 成员函数,该函数将 ostream& 作为参数并打印到该 ostream&。测试您的类(class)以证明它可以正常工作。

我可以创建类并编写 operator+ 函数,但我真的不明白问题的第二部分。到目前为止,在我对 c++ 的研究中,我还没有真正遇到过 ostream,因此我不确定是否可以明确地创建这样一个流。我试过使用:

std::ostream o;

但是这会产生错误。有人可以请教我应该如何创建这个功能吗?

最佳答案

So far in my study of c++ I havent really come across ostream's and as such am not sure if its possible to explicitly create such a stream. I have tried using: std::ostream o;

您一定错过了什么,因为 ostream 很重要。 std::cout 是 std::ostream 类型的变量。用法大致是这样的

#include <iostream> //defines "std::ostream", and creates "std::ofstream std::cout"
#include <fstream> //defines "std::ofstream" (a type of std::ostream)
std::ostream& doStuffWithStream(std::ostream &out) { //defines a function
out << "apples!";
return out;
}
int main() {
std::cout << "starting!\n";
doStuffWithStream(std::cout); //uses the function

std::ofstream fileout("C:/myfile.txt"); //creates a "std::ofstream"
doStuffWithStream(fileout); //uses the function

return 0;
}

关于c++ - 创建一个将 ostream 作为参数并写入该流的打印函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7179161/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com