在类中定义输出文件流

发布于 2024-12-06 14:52:03 字数 384 浏览 1 评论 0原文

如何在类中定义输出文件流,以便我不必不断将其传递给函数。基本上我想做的是这样的:

class A {

private:
   ofstream otp ;

};

然后在我的构造函数中,我只需有 otp.open("myfile"); ,在其他函数中我有 otp.open("myfile", ios::app); ,但在编译时失败,说:

../thermo.h(18): error: identifier "ofstream" is undefined
      ofstream otp ;

我已确保 #include

谢谢!

How can I define an output file stream within a class, so that I don't have to keep passing it around to functions. Basically what I want to do is this:

class A {

private:
   ofstream otp ;

};

Then in my constructor, I simply have otp.open("myfile"); and in other functions I have otp.open("myfile", ios::app); , but it fails during compile time, saying:

../thermo.h(18): error: identifier "ofstream" is undefined
      ofstream otp ;

I have made sure to #include <fstream>

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

梦太阳 2024-12-13 14:52:03

您需要使用完全限定名称std::ofstream

You'll need to use the fully qualified name, std::ofstream.

纵山崖 2024-12-13 14:52:03

您需要在类的声明上方放置一个 using namespace std; 语句,或者将 otp 变量声明为 std::ofstream 因为它存在于std 命名空间。

You need either place a using namespace std; statement above your class's declaration or declare the otp variable as std::ofstream because it exists within the std namespace.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文