gpt4 book ai didi

c++ - 从不同的字符串输出文件名

转载 作者:行者123 更新时间:2023-11-30 02:58:06 24 4
gpt4 key购买 nike

您好,我在使用这段代码时遇到了一些麻烦

#include <iostream>
#include <fstream>
#include <string>
using namespace std;

int main()
{
string line;
//const char* test = "connect";
#define test "connect"
string con("c:\\filepath\\%s.txt", test);
ifstream file;
file.open(con.c_str());
if (file.is_open()) {
while (file.good()) {
getline(file, line);
printf("setc %s\n", line.c_str());
//cout << "setc " << line << endl;
}
file.close();
} else
cout << "Unable to open file";
return 0;
}

谁能告诉我哪里出了问题

这就是我想要的

'con' 是为了从 'test' 获取它的文件名

如果你能帮助我,我将不胜感激:)

最佳答案

有很多方法可以做到这一点。这里有两个:

std::string con1("c:\\filepath\\" test ".txt");
std::string con2("c:\\filepath\\" + std::string(test) + ".txt");

con1的初始化需要test通过宏展开成为字符串文字,因为它依赖于字符串文字的合并。第二种形式更通用,test 可以是任何可以转换为 std::string 的东西,例如 char const*

关于c++ - 从不同的字符串输出文件名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14009871/

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