-4

将错误作为 void * 无法分配给 char* 16 类型的实体应该做什么才能解决错误。问题存在于 xmlpath 和 dllPath

 void fmuLoad() {
  char* fmuPath;
char tmpPath[1000]="W:\\Prajwal\\GM_FMU_EXTRACT\\";
char* xmlPath;
char* dllPath;
const char *modelId;
FMU fmu;

fmuUnzip();
 // parse tmpPath\modelDescription.xml
xmlPath = calloc(sizeof(char), strlen(tmpPath) + strlen(XML_FILE) + 1);
sprintf(xmlPath, "%s%s", tmpPath, XML_FILE);
fmu.modelDescription = parse(xmlPath);
free(xmlPath);
if (!fmu.modelDescription) exit(EXIT_FAILURE);
//printf(fmu.modelDescription);
 #ifdef FMI_COSIMULATION
modelId = getAttributeValue((Element*)getCoSimulation(fmu.modelDescription),att_modelIdentifier);

//#else // FMI_MODEL_EXCHANGE
//  modelId = getAttributeValue((Element *)getModelExchange(fmu.modelDescription), att_modelIdentifier);
 #endif
// load the FMU dll
 dllPath = calloc(sizeof(char), strlen(tmpPath) + strlen(DLL_DIR) + strlen(modelId) +  strlen(".dll") + 1);
sprintf(dllPath, "%s%s%s.dll", tmpPath, DLL_DIR, modelId);
if (!loadDll(dllPath, &fmu)) {
    exit(EXIT_FAILURE);
}
 //  free(dllPath);
//  free(fmuPath);
//  free(tmpPath);

}
4

2 回答 2

1

在 C++ 中,需要强制转换来分配 void 指针。

xmlPath = (char*)calloc(sizeof(char), strlen(tmpPath) + strlen(XML_FILE) + 1);

或者,使用 C++ 风格:

xmlPath = static_cast<char*>( calloc(sizeof(char), strlen(tmpPath) + strlen(XML_FILE) + 1) );

当然,人们应该真正质疑为什么要使用旧的 C 库函数calloc。如果您实际上是在编译 C 程序,请尝试告诉您的编译器它是 C 而不是 C++。那么铸造就没有必要了。

于 2015-07-20T04:45:45.600 回答
1
static_cast<char*>(calloc(sizeof(char), strlen(tmpPath) + strlen(DLL_DIR) + strlen(modelId) +  strlen(".dll") + 1));

calloc 的返回类型是 void*。您必须显式转换 calloc 的结果。

于 2015-07-20T04:47:43.520 回答