gpt4 book ai didi

c++ - 从#define 转换为字符串 C++

转载 作者:太空狗 更新时间:2023-10-29 19:51:35 25 4
gpt4 key购买 nike

我想从#define 转换成字符串。

我的代码:

#ifdef WIN32
#define PREFIX_PATH = "..\\"
#else
#define PREFIX_PATH = "..\\..\\"
#endif


#define VAL(str) #str
#define TOSTRING(str) VAL(str)

string prefix = TOSTRING(PREFIX_PATH);
string path = prefix + "Test\\Input\input.txt";

但是,它没有用..

前缀值为“..\\\”

知道问题是什么..

谢谢!

最佳答案

您不需要在定义中使用“=”,或者在双引号字符串之间使用任何#str 或“+”。

#ifdef WIN32
#define PREFIX_PATH "..\\"
#else
#define PREFIX_PATH "..\\..\\"
#endif

string path = PREFIX_PATH "Test\\Input\\input.txt";

关于c++ - 从#define 转换为字符串 C++,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40237418/

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