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()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。