如何从数组中的给定索引追加非const wchar数组

时间:2014-08-26 09:14:20

标签: c++

我正在尝试连接两个* wchar数组,但是wcscat()需要const wchar_t source.I需要做类似这样的事情

 wcscat(strResultAbsolutePath, strRelativePath[i]);

但strRelativePath []不应该是const。

1 个答案:

答案 0 :(得分:0)

我认为问题不在const。问题是,strRelativePath[i]wchar_t,而不是wchar_t*。 你应该使用

wcscat(strResultAbsolutePath, &strRelativePath[i]);

表示从strRelativePath开始从符号i开始复制到strResultAbsolutePath