C++中,strcpy函数中的参数是不是不能为string类型的啊?

2024年10月30日 20:45
有2个网友回答
网友(1):

对,不能是string类型,只能是char *。strcpy是C语言标准库函数,原型声明:char *strcpy(char* dest, const char *src);

网友(2):

dst的话需要先string str; str.resize(100);
strcpy(str.c_str(), "abc");

src的话的
strcpy(cBuf,str.c_str());