作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
Pacient& operator = ( Pacient&p) {
cout << "Operator = Pacient" << endl;
delete [] this->nume;
this->nume = new char[strlen(p.nume)+1];
strcpy_y(this->nume,strlen(p.nume)+1,p.nume); // ERROR
delete [] this->prenume;
this->prenume = new char[strlen(p.prenume)+1];
strcpy_y(this->prenume,strlen(p.prenume)+1,p.prenume); // ERROR
this->varsta = p.varsta;
return *this;
}
1>Compiling...
1>pacienti.cpp
1>f:\bob\facultate\semestrul iii\programareorientataobiect\proiect pacienti\proiect\proiect\pacienti.cpp(24) : error C3861: 'strcpy_y': identifier not found
1>f:\bob\facultate\semestrul iii\programareorientataobiect\proiect pacienti\proiect\proiect\pacienti.cpp(27) : error C3861: 'strcpy_y': identifier not found
我收到这个错误。为什么?我应该怎么做才能摆脱它?
最佳答案
编译器不知道 strcpy_y
是什么,因为您没有在当前翻译单元中该行之前的任何地方声明它。
要么提供 strcpy_y
的声明(例如,#include
一个相关的 header ,要么转发声明它),或者如果您打算调用其他函数,则修复拼写错误。
关于c++ - 错误 C3861 : 'strcpy_y' : identifier not found,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21121704/
Pacient& operator = ( Pacient&p) { cout nume; this->nume = new char[strlen(p.nume)+1]; strcpy_
我是一名优秀的程序员,十分优秀!