strcpy() 函数注意的地方

Posted tadguo

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了strcpy() 函数注意的地方相关的知识,希望对你有一定的参考价值。

// require user to enter name and handicap, if the name is exist, then return 1, or return 0.
int setgolf(golf & g)
{
string temp;
cout << "Name: ";
getline(cin, temp);
if (temp == "") // whether temp is empty.
{
std::cout << "No name here. Bye!";
return 0;
} else
strcpy(g.fullname, temp.c_str());
int score;
cout << "Handicap: ";
cin >> score;
cin.get();
if(!score)
return 0;
g.handicap = score;
return 1;
}

这里注意 temp.c_str()
c_str()函数返回一个指向正规C字符串的指针常量, 内容与本string串相同. 
这是为了与c语言兼容,在c语言中没有string类型,故必须通过string类对象的成员函数c_str()把string 对象转换成c中的字符串样式。
注意:一定要使用strcpy()函数 等来操作方法c_str()返回的指针 

以上是关于strcpy() 函数注意的地方的主要内容,如果未能解决你的问题,请参考以下文章

2.strcpy使用注意

字符数组拷贝与strcpy函数

strcpy函数详解&&注意事项&&模拟实现

strcpy函数和memcpy函数有啥区别?它们各自使用时应该注意啥问题?

c语言中的strcpy啥意思,简单点解释

C语言 strcpy 函数