mfc 给wchar_t指针类型变量重新赋值字符串
时间: 2024-02-05 12:04:45 浏览: 75
字符串赋值
4星 · 用户满意度95%
你可以使用 `wcscpy` 函数来给 `wchar_t` 类型的指针变量重新赋值字符串。该函数的语法如下:
```c++
wchar_t* wcscpy(wchar_t* dest, const wchar_t* src);
```
其中,`dest` 参数是要被赋值的目标指针变量,`src` 参数是要被赋值的源字符串。
以下是一个示例代码:
```c++
#include <iostream>
#include <cstring>
using namespace std;
int main()
{
wchar_t* str = new wchar_t[50];
wcscpy(str, L"Hello, world!"); // 给指针变量重新赋值字符串
wcout << str << endl;
delete[] str;
return 0;
}
```
输出:
```
Hello, world!
```
阅读全文