strcpy_s是C++中的一種字符串拷貝函數(shù),用于將一個(gè)字符串復(fù)制到另一個(gè)字符串中。與strcpy不同的是,strcpy_s包含了目標(biāo)字符串的大小作為參數(shù),以避免緩沖區(qū)溢出的問(wèn)題。
使用strcpy_s函數(shù)的語(yǔ)法如下:
strcpy_s(destination, destinationSize, source);
其中,destination表示目標(biāo)字符串的指針,destinationSize表示目標(biāo)字符串的大小,source表示要復(fù)制的源字符串。
例如,以下代碼演示了如何使用strcpy_s函數(shù)將一個(gè)字符串復(fù)制到另一個(gè)字符串中:
#include <iostream>
#include <cstring>
int main() {
char dest[20];
const char* source = "Hello, World!";
strcpy_s(dest, sizeof(dest), source);
std::cout << "Copied string: " << dest << std::endl;
return 0;
}
在上面的例子中,我們聲明了一個(gè)目標(biāo)字符串dest和一個(gè)源字符串source,然后使用strcpy_s將source復(fù)制到dest中。最后輸出了復(fù)制后的字符串。