gpt4 book ai didi

c++ - 错误 C3861 : 'strcpy_y' : identifier not found

转载 作者:行者123 更新时间:2023-11-27 23:09:34 26 4
gpt4 key购买 nike

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/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com