类和文件读取

发布于 2024-08-01 15:09:18 字数 101 浏览 4 评论 0原文

用于文件读取的ifstream类型的对象可以是类的静态成员吗​​? 我想读取一个文件并将每一行存储在我创建的类的对象数组中。 我希望文件读取对象属于整个对象数组,而不是该类的单个实例。

Can an object of ifstream type used for file reading be a static member of a class? I want to read a file and store each line in an array of objects of a class i have created. I want the file reading object to belong to the entire array of objects instead of one single instance of the class.

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

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

发布评论

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

评论(2

沙与沫 2024-08-08 15:09:18

我假设您正在询问有关 C++ 的问题 - 请在以后明确说明。 答案是,是的,当然可以——你尝试过吗? 如果您遇到过问题,请发布导致问题的代码。 请注意,对于所有静态成员,您需要在 .cpp 源文件中定义它:

// a.h
class A {
   static std::ifstream mIfs;
};

// a.cpp
std::ifstream A::mIfs;

I assume you are askingng about C++ - please be explicit in future. And the answer is, yes, of course it can - have you tried it? If you have, and you experienced problems, post the code that causes the problems. Note that as for all static members you will need to define it in a .cpp source file:

// a.h
class A {
   static std::ifstream mIfs;
};

// a.cpp
std::ifstream A::mIfs;
终陌 2024-08-08 15:09:18

由于未指定语言,我只能将您重定向到基本设计模式:单例模式 。 请参阅@Neil 的 C++ 答案。

As the language is not specified, I can only redirect you to the basic design pattern : Singleton pattern. Refer @Neil answer for the C++.

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