// included iostream, windows.h
// This issue has been bugging me for ages!!
int main() {
std::wstring pls = L"C:\\yesplease.txt";
static const int SIZE = 100;
WCHAR path[SIZE];
std::wcout << "\"" << path << "\"" << std::endl;
return 0;
}
答案 0 :(得分:0)
如前所述,您可以使用std::wcscpy()
从std::wstring
复制到wchar_t
数组。
话虽如此,您应该这样做的时间很少见。
通常,+运算符与.find()
和substr()
一起可以胜任您所需的任何任务。
如果需要将序列传递给需要C样式字符串的函数,请使用.c_str()
。