std::wcsncat
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <cwchar> 中定义
|
||
wchar_t *wcsncat( wchar_t *dest, const wchar_t *src, std::size_t count ); |
||
。追加一个字符串所指向的
src
到宽字符串指出,dest
。在最count
宽字符被复制。宽字符串是空终止。如果字符串重叠,该行为是未定义. 原文:
Appends a wide string pointed to by
src
to a wide string pointed to by dest
. At most count
wide characters are copied. 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 |
count | - | 。宽字符复制的最大数量。
原文: maximum number of wide characters to copy |
===。
返回值。===
dest
[编辑] 。为例。
本章尚未完成 原因:暂无示例 |
[编辑] 。另请参阅。
一个宽字符串的副本追加到另一个地方 原文: appends a copy of one wide string to another (函数) | |
一个宽字符串复制到另一个地方 (函数) | |
C documentation for wcsncat
|