gpt4 book ai didi

c++ - 使用 std::string 打开文件

转载 作者:太空狗 更新时间:2023-10-29 23:38:32 33 4
gpt4 key购买 nike

这应该是一个相当微不足道的问题。我正在尝试使用 std::string(或 std::wstring)打开一个 ofstream,但在不进行困惑转换的情况下无法正常工作。

std::string path = ".../file.txt";

ofstream output;

output.open(path);

理想情况下,如果有更好的方法,我不想手动转换它或涉及 c 风格的字符指针?

最佳答案

在路径字符串中,使用两个点而不是三个点。

您也可以在字符串上使用 'c_str()' 方法来获取底层 C 字符串。

output.open(path.c_str());

关于c++ - 使用 std::string 打开文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/525903/

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