gpt4 book ai didi

c++ - 如何在 C++ 类中定义 vector

转载 作者:塔克拉玛干 更新时间:2023-11-03 06:49:43 27 4
gpt4 key购买 nike

我需要像这样的类中的 vector 成员:

class A
{
private:
vector<ifstream> _files;
public:
bool addFile(const string& filePath);
};

bool A::addFile(const string& filePath)
{
ifstream ifile(filePath.c_str());
_files.push_back(ifile);//but errors;
}

如何编译成功完成这门课;

现在我的解决方案是使用 vector 。这可以吗?还是一些潜在的危险?

最佳答案

STL 容器需要元素是 CopyConstructibleAssignablestd::ifstream 不可复制。您需要使用指向 std::ifstream 的智能指针。

关于c++ - 如何在 C++ 类中定义 vector<ifstream>,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17829961/

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