我正在尝试连接两个* wchar数组,但是wcscat()需要const wchar_t source.I需要做类似这样的事情
wcscat(strResultAbsolutePath, strRelativePath[i]);
但strRelativePath []不应该是const。
答案 0 :(得分:0)
我认为问题不在const
。问题是,strRelativePath[i]
是wchar_t
,而不是wchar_t*
。
你应该使用
wcscat(strResultAbsolutePath, &strRelativePath[i]);
表示从strRelativePath
开始从符号i
开始复制到strResultAbsolutePath
。