我需要将网络字节顺序的结构 s1 复制到主机字节顺序的另一个结构 s2
我看到以下两种方法给出了不同的输出。我认为method2是正确的做法。我对么 ?如果是,我不明白为什么会有不同的输出。可能 memcpy 在这里发挥作用?
struct abc
{
int a;
int b;
int c;
} ;
struct abc s1 = {0x58,0x20,0x30};
struct abc s2;
方法1:
memcpy (&s2,&s2,sizeof(s1));
/* NOTE I read from s2 itself in ntohl */
s2.a= ntohl(s2.a);
s2.b= ntohl(s2.b);
s2.c= ntohl(s2.c);
printf("a %x b %x c %x\n",s2.a,s2.b,s2.c);
方法2:
/* read directly from s1 */
s2.a= ntohl(s1.a);
s2.b= ntohl(s1.b);
s2.c= ntohl(s1.c);
printf("a %x b %x c %x\n",s2.a,s2.b,s2.c);