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