gpt4 book ai didi

c++ - FStream 类并使用字符串作为参数

转载 作者:行者123 更新时间:2023-11-28 08:08:29 25 4
gpt4 key购买 nike

Deneme::Deneme(string FileName){

fstream textfile;
textfile.open(FileName);
}

这给了我一个错误,但是当我输入 textfile.open("randomname");而不是 textfile.open(FileName);似乎没有问题。为什么是这样?这可能是一个简单的问题,但我是初学者,找不到解决方案。

最佳答案

fstreams 只接受const char*。使用 textfile.open(FileName.c_str());fstream textfile(FileName.c_str()); 代替(尽管 C++11 接受 const std::字符串&)。这是一个handy site查看构造函数和函数的声明方式。

关于c++ - FStream 类并使用字符串作为参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9692808/

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