gpt4 book ai didi

c++ - 没有匹配函数调用 `std::basic_ofstream>::basic_ofstream(std::string&)'

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:10:56 25 4
gpt4 key购买 nike

我正在尝试编写一个程序,要求用户输入文件名,然后打开该文件。当我编译它时,出现以下错误:

no matching function for call to std::basic_ofstream<char, 
std::char_traits<char> >::basic_ofstream(std::string&)

这是我的代码:

using namespace std;

int main()
{
string asegurado;
cout << "Nombre a agregar: ";
cin >> asegurado;

ofstream entrada(asegurado,"");
if (entrada.fail())
{
cout << "El archivo no se creo correctamente" << endl;
}
}

最佳答案

std::ofstream如果您有 C++11 或更高版本,则只能使用 std::string 构造。通常这是通过 -std=c++11 (gcc, clang) 完成的。如果您无法访问 c++11,那么您可以使用 std::stringc_str() 函数来传递一个 const char *ofstream 构造函数。

也为 Benpointed out您正在为构造函数的第二个参数使用空字符串。如果提供,第二个参数需要是 ios_base::openmode 类型。

有了这些你的代码应该是

ofstream entrada(asegurado); // C++11 or higher

ofstream entrada(asegurado.c_str());  // C++03 or below

我还建议您阅读:Why is “using namespace std;” considered bad practice?

关于c++ - 没有匹配函数调用 `std::basic_ofstream<char, std::char_traits<char>>::basic_ofstream(std::string&)',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35045781/

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