strcpy不适用于string类,string类中要完成复制只要用+,如
#include
#include
#include
using namespace std;
int main()
{
string s1("Hello ");
string s2("World");
string s3;
s3=s1+s2;
cout<
//cout<
}
输出就是Hello World
strcpy是char型数组拷贝函数。
如果是string类型的拷贝直接调用拷贝构造函数就可以了。
或者用memcoy((unsigned char*)pDes,(unsigned char*)strData,sizeof(strData))
strcpy
Copies one string to another.
应该也是实用的
有,你去下载一个C语言库函数查询工具吧,想查就查