gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-02 10:59:06 25 4
gpt4 key购买 nike

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

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

ofstream output;

output.open(path);

理想情况下,如果有更好的方法,我不需要手动转换它或使用c样式的char指针?

最佳答案

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

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

output.open(path.c_str());

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

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