从类对象到结构变量的memcpy

时间:2019-04-16 09:08:09

标签: c++ c++11

我有两个不同的应用程序。我必须将信息从一个应用程序发送到另一个。在一个应用程序中,在类对象中进行编码,而在另一应用程序中,在具有相同数据类型的结构对象中进行解码。

将类对象复制到具有相同数据类型的结构是否正确实现?还是我必须更改编码/解码部分之一?

我尝试过了,这似乎是正确的memcpy,但我不知道它是否正确。.

例如...

#include <iostream>
#include <cstring>

class capn{
    public:
    unsigned short int apn[8];
    unsigned short int a;
};

class creq{
    public:
    capn a1;
    capn a2;
    unsigned short int t;
    capn a3;
};

class cy{
    public:
    capn a1;
    capn a2;
    unsigned short int aaa[34];
    capn a3;
    unsigned short int bbb[12];
};

class cx{
    public:
    cx(){
        a=0;
        b=0;
        c=0;
        memset(d,0,8);
    }
    unsigned int a;
    unsigned int b;
    unsigned int c;
    union {
        creq requ;
        cy pasd;
    };
    unsigned short int d[8];
};



struct apn{
    unsigned short int apn[8];
    unsigned short int a;
};

struct req{
    struct apn a1;
    struct apn a2;
    unsigned short int t;
    struct apn a3;
};

struct y{
    struct apn a1;
    struct apn a2;
    unsigned short int aaa[34];
    struct apn a3;
    unsigned short int bbb[12];
};

struct x{
    unsigned int a;
    unsigned int b;
    unsigned int c;
    union {
        struct req requ;
        struct y pasd;
    };
    unsigned short int d[8];
};

int main()
{
    struct x ox;
    ox.a=1;
    ox.b=2;
    ox.c=3;
    ox.d[0]=4;
    ox.requ.a1.a=5;
    ox.requ.t=6;

    cx obj;
    std::cout<<sizeof(ox)<<std::endl;
    std::cout<<sizeof(obj)<<std::endl;

    memcpy(&obj,&ox,sizeof(ox));
    std::cout<<obj.a<<" " <<obj.b<< " " <<obj.c<< " "<<obj.d[0]<< " " <<obj.requ.a1.a<<" "<<obj.requ.t<<std::endl;
    return 0;
}

1 个答案:

答案 0 :(得分:5)

您在这里有两个问题。

  1. 如何序列化对象,
  2. 如何将其转移到另一个地址空间。

仅当对象包含POD个成员和you know个底层体系结构详细信息(例如对齐,字节序等(Trivially Copiable))时,才能使用memcpy进行序列化。为了减少麻烦,您可以尝试序列化为XML。

要转移到接收器,取决于接收器所在的位置。例如,如果它是不同的地址空间,则可以使用Sockets,或(在Windows中)使用File Mapping。如果它是相同地址空间中的DLL,则只需共享一个指向序列化数据的指针即可。