在C++中,可以使用std::string类来替代strcpy_s函数。std::string类提供了对字符串的更安全和方便的处理方式。可以使用std::string的构造函数或赋值操作符来复制字符串内容,例如:
#include <string>
int main() {
const char* source = "Hello, World!";
// 使用构造函数复制字符串内容
std::string dest(source);
// 或者使用赋值操作符
dest = source;
return 0;
}
这样可以避免使用strcpy_s函数带来的安全隐患。