我有三个结构header
,dataA
和dataB
。将header
确定将使用的结构。dataA
和具有几乎相同的dataB
结构(比方说):
struct dataA
{
int intValue;
char reserved1[8];
float floatValue;
char reserved2[4];
short shortValue;
};
struct dataA
{
int intValue;
short shortValue;
char reserved[2];
float floatValue;
};
我想像这样打印它:
sprintf(outStr, "%i, %f, %s", p->intValue, p->floatValue, p->shortValue);
- 或者 -
sprintf(outStr, "%i, %f, %s", p.intValue, p.floatValue, p.shortValue);
我该如何申报p
?(注意:两者dataA
的dataB
结构都很大,但数据几乎相同,但保留值除外。)
我在想这样的事情:
void * p;
if (header->type==1)
p = (dataA*)(pData);
else if (header->type==2)
p = (dataB*)(pData);
// print all data here
注意:这里pData
是指向我将被读取的(原始)数据的指针。我只需要那些非保留值并忽略保留值。