对,不能是string类型,只能是char *。strcpy是C语言标准库函数,原型声明:char *strcpy(char* dest, const char *src);
dst的话需要先string str; str.resize(100);strcpy(str.c_str(), "abc");src的话的strcpy(cBuf,str.c_str());