C中的位字段访问

时间:2013-01-10 09:30:42

标签: c compiler-construction compiler-warnings

我正在尝试访问位字段:

下面的代码工作正常并给出了预期的结果,但抛出了我在下面提到的编译器警告。

#include <stdio.h>
#include <stdint.h>


struct status_type_one{
unsigned delta_cts : 1;// lsb
unsigned delta_dsr : 1;
unsigned tr_edge : 1 ;
unsigned delta_rec : 1;
unsigned cts : 1;
unsigned dsr : 1;
unsigned ring : 1;
unsigned rec_line : 1;// msb
} status_one;

struct status_type_two {
unsigned : 4; // lsb 4 bits
unsigned cts : 1; //bit 5
unsigned dsr : 1; // bit 6
} status_two;



int main(void)
{
  status_one.delta_cts=1;
  status_one.delta_dsr=0;
  status_one.tr_edge=1;
  status_one.delta_rec=0;
  status_one.cts=1;
  status_one.dsr=0;
  status_one.ring=1;
  status_one.rec_line=1;

  printf("The value of status_one is %x\n",status_one);  // warning here

  status_two.cts=1;
  status_two.dsr=1;

  printf("The value of status_one is %d\n",status_two);  // warning here



    return 0;
    }

但我收到了警告:

$ gcc -Wall Bit_Fields.c -o Bit_Fields
Bit_Fields.c: In function `main':
Bit_Fields.c:35: warning: unsigned int format, status_type_one arg (arg 2)
Bit_Fields.c:35: warning: unsigned int format, status_type_one arg (arg 2)
Bit_Fields.c:40: warning: int format, status_type_two arg (arg 2)
Bit_Fields.c:40: warning: int format, status_type_two arg (arg 2)

输出正确如下所示

$ ./Bit_Fields
The value of status_one is d5
The value of status_one is 48

任何人都可以告诉,警告是关于什么以及如何解决它?

由于

1 个答案:

答案 0 :(得分:3)

解决此问题的典型方法是使用整数类型的联合值,例如:

union status_type_one
{
   struct status_type_one{
       unsigned delta_cts : 1;// lsb
       unsigned delta_dsr : 1;
       unsigned tr_edge : 1 ;
       unsigned delta_rec : 1;
       unsigned cts : 1;
       unsigned dsr : 1;
       unsigned ring : 1;
       unsigned rec_line : 1;// msb
   } bits;
   unsigned whole[1];       // Size should match the total bits size.
} status_one;

现在,您的其他代码必须更改:

status_one.bits.delta_cts=1;
status_one.bits.delta_dsr=0;
status_one.bits.tr_edge=1;
... etc ...

和打印:

printf("The value of status_one is %x\n",status_one.whole[0]);

[显然,如果结构整体上不止一个项目,你需要循环或将几个值传递给printf]

你正在做的事情看起来似乎很有效,但你并不是真的应该将STRUCT传递给printf函数,而且如果你使用多个机器字数据,或者会发生什么,那就不知道是怎么回事在64位机器上等等。