/* c++ file */
extern "C"
{
#include "Param.h"
#include "manager.h"
}
void Manager::Init(){
struct config pParam;
memset(&pParam, 0, sizeof(pParam));
pParam.pulse = 123;
pParam.rotation = 567;
Parameters(&pParam);
}
/* c file */
int max_pulse = 0, rotation = 0;
void Parameters(const struct config *p_param)
{
max_pulse = p_param->pulse; // assign the wrong data here
rotation = p_param->rotation; // assign the wrong data here
}
这是一个非常奇怪的问题。
config 在 Param.h 中定义,管理器类在 manager.h 文件中定义。
运行代码后,我得到 max-pulse = 567 和 rotation = 0。我不知道为什么这段代码会发生这种情况。我正在使用 Visual Studio 2008 Express。
有人可以帮我解决这个问题吗?