wcscpy
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <wchar.h> 中定义
|
||
wchar_t *wcscpy( wchar_t *dest, const wchar_t *src ); |
||
宽字符串复制指出,
src
(包括终止空宽字符)宽字符数组所指向的dest
.原文:
Copies the wide string pointed to by
src
(including the terminating null wide character) to wide character array pointed to by dest
.如果字符串重叠,该行为是未定义.
原文:
If the strings overlap, the behavior is undefined.
目录 |
[编辑] 参数
dest | - | 指针的宽字符数组复制到
原文: pointer to the wide character array to copy to |
src | - | 指针null结尾的宽字符串复制
原文: pointer to the null-terminated wide string to copy from |
[编辑] 返回值
dest
[编辑] 示例
本章尚未完成 原因:暂无示例 |
[编辑] 另请参阅
一定量的宽字符复制到另一个从一个字符串 原文: copies a certain amount of wide characters from one string to another (函数) | |
复制宽字符两个非重叠的阵列之间的一定量的 原文: copies a certain amount of wide characters between two non-overlapping arrays (函数) | |
C++ documentation for wcscpy
|