std::strcpy
来自cppreference.com
![]() |
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <cstring> 中定义
|
||
char *strcpy( char *dest, const char *src ); |
||
。复制的字节串所指向的
src
字节的字符串,指向dest
.原文:
Copies the byte string pointed to by
src
to byte string, pointed to by dest
.。如果字符串重叠,该行为是未定义.
原文:
If the strings overlap, the behavior is undefined.
[编辑] 。参数。
dest | - | 。指针字节的字符串复制到。
原文: pointer to the byte string to copy to |
src | - | 。指针null结尾的字节的字符串复制。
原文: pointer to the null-terminated byte string to copy from |
===。
返回值。===
dest
[编辑] 。为例。
本章尚未完成 原因:暂无示例 |
[编辑] 。另请参阅。
将一个字符串的一部分复制到另一个字符串 原文: copies a certain amount of characters from one string to another (函数) | |
将一个缓冲区复制到另一个缓冲区 (函数) | |
C语言文档 for strcpy
|