PLCXProcess.cpp:1318:59: error: cannot call member function 'int CPLCXProcess::UpdatePLStatus(oracle::occi::Connection*, std::string, char*, std::string)' without object UpdatePLStatus(pConn, "17",(char*)"99", strPLCXFilename);//ʧ̬Ϊ17
时间: 2024-04-28 20:21:30 浏览: 96
这看起来像是一个编译错误,可能是因为您调用了一个成员函数,但没有创建对象实例。请确保在调用 `UpdatePLStatus` 函数之前,已经创建了 `CPLCXProcess` 类的对象。如果您已经创建了对象,请检查是否正确传递了该对象作为第一个参数 `pConn`。如果问题仍然存在,请提供更多上下文和代码细节,以便我能够帮助您更好地解决问题。
相关问题
PLCXProcess.cpp: In member function 'int CPLCXProcess::INSERTCXDATA(oracle::occi::Connection*, std::vector<PCXPackage>, long int&, std::string)': PLCXProcess.cpp:1042:30: error: no matching function for call to 'CPLCXProcess::GetCurLocalDate(std::string&)' GetCurLocalDate(strLocalDate); ^ PLCXProcess.cpp:1042:30: note: candidate is: In file included from PLCXProcess.cpp:9:0:
这是一个编译错误,错误信息显示在调用 `GetCurLocalDate` 函数时传递了一个错误的参数类型。
在C++中,参数类型非常重要。函数的参数类型必须与函数声明中的参数类型完全匹配。在这种情况下,`GetCurLocalDate` 函数声明的参数类型是 `char*`,而实际传递的参数类型是 `std::string`,它们不匹配。
解决方法:
有两种解决方法:
1. 将 `GetCurLocalDate` 函数的参数类型改为 `std::string`,例如:
```
void GetCurLocalDate(std::string& szLocalDate);
```
然后在函数实现中,将日期字符串赋值给 `szLocalDate`。这样就可以使用 `std::string` 类型的参数调用函数了。
2. 将 `std::string` 转换为 `char*` 类型,例如:
```
std::string strLocalDate = "2022-01-01";
char* szLocalDate = new char[strLocalDate.size() + 1];
std::strcpy(szLocalDate, strLocalDate.c_str());
GetCurLocalDate(szLocalDate);
delete[] szLocalDate;
```
在这种情况下,我们先创建一个指向字符数组的指针 `szLocalDate`,然后使用 `strcpy` 函数将 `std::string` 类型的字符串复制到字符数组中。最后,我们将指向字符数组的指针作为参数传递给 `GetCurLocalDate` 函数。注意,在使用完字符数组后,需要使用 `delete` 关键字释放内存,以免造成内存泄漏。
PLCXProcess.cpp: In member function 'int CPLCXProcess::InsertIntoPLTradeReg(oracle::occi::Connection*, std::string, std::string, std::string, XHX_PLCX_PACKHEAD*)': PLCXProcess.cpp:2579:51: error: no matching function for call to 'CPLCXProcess::GetLvKaCurDate(oracle::occi::Connection*&, char [9], const char [3])' if (0 != GetLvKaCurDate(pConn, strLocalDate, "99"))//lvka_statelocal_cur_date ^ PLCXProcess.cpp:2579:51: note: candidate is: In file included from PLCXProcess.cpp:9:0: PLCXProcess.h:156:6: note: int CPLCXProcess::GetLvKaCurDate(oracle::occi::Connection*, std::string&, std::string) int GetLvKaCurDate(Connection* pConn, string& strLvKaDate, string strProvinceCode); ^ PLCXProcess.h:156:6: note: no known conversion for argument 2 from 'char [9]' to 'std::string& {aka std::basic_string<char>&}' make: *** [PLCXProcess.o] Error 1
根据您提供的信息,编译错误原因是函数调用参数类型不匹配。函数 `GetLvKaCurDate` 的第二个参数应该是 `std::string&` 类型,而您传入的是 `char [9]` 类型。您可以将 `char [9]` 转换为 `std::string` 类型,或者重载该函数,使其接受 `char [9]` 类型的参数。
阅读全文