C++ 中的strncat() 函数将一个字符串的指定数量的字符附加到另一个字符串的末尾。
strncat()原型
char* strncat( char* dest, const char* src, size_t count );
strncat()
函数采用三个参数:dest
, src
和 count
。此函数最多附加 src
指向的字符串的 count
字符,以及 dest
指向的字符串的结尾。 dest 末尾的空终止字符被src
的第一个字符替换,结果字符也是空终止的。
行为未定义,如果
- 字符串重叠。
- dest 数组不够大,无法追加 src 的内容。
它在<cstring> 头文件中定义。
参数:
dest
:指向要附加到的空终止字符串的指针。src
:指向要附加的空终止字符串的指针。count
:要复制的最大字符数。
返回:
strncat() 函数返回 dest,即指向目标字符串的指针。
示例:strncat() 函数的工作原理
#include <cstring>
#include <iostream>
using namespace std;
int main()
{
char dest[50] = "Using strncat function,";
char src[50] = " this part is added and this is ignored";
strncat(dest, src, 19);
cout << dest ;
return 0;
}
运行程序时,输出将是:
Using strncat function, this part is added
相关用法
- C++ strncat()用法及代码示例
- C++ strncmp()用法及代码示例
- C++ strncpy()用法及代码示例
- C++ string::length()用法及代码示例
- C++ strchr()用法及代码示例
- C++ string::npos用法及代码示例
- C++ strcat()用法及代码示例
- C++ strstr()用法及代码示例
- C++ strcat() vs strncat()用法及代码示例
- C++ strtok()用法及代码示例
- C++ strtod()用法及代码示例
- C++ strtoimax()用法及代码示例
- C++ strcmp()用法及代码示例
- C++ strcspn()用法及代码示例
- C++ strpbrk()用法及代码示例
- C++ strxfrm()用法及代码示例
- C++ strspn()用法及代码示例
- C++ strtoull()用法及代码示例
- C++ string at()用法及代码示例
- C++ strol()用法及代码示例
注:本文由纯净天空筛选整理自 C++ strncat()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。