在C++中,strncpy
函數用于將一個字符串的一部分復制到另一個字符串中。其聲明如下:
char *strncpy(char *destination, const char *source, size_t num);
其中,destination
是目標字符串,source
是要復制的源字符串,num
是要復制的字符的最大數量。
使用示例:
#include <iostream>
#include <cstring>
int main() {
char source[] = "Hello, world!";
char destination[20];
// 將source中的前5個字符復制到destination中
strncpy(destination, source, 5);
destination[5] = '\0'; // 手動添加字符串結束符
std::cout << "Copied string: " << destination << std::endl;
return 0;
}
上述代碼將源字符串"Hello, world!“中的前5個字符復制到目標字符串中,并輸出結果為"Hello”。需要注意的是,在使用strncpy
函數時,需要手動添加字符串結束符,以確保目標字符串正確終止。