gpt4 book ai didi

c - 我不能在 C 中操作位字段

转载 作者:太空狗 更新时间:2023-10-29 15:45:41 27 4
gpt4 key购买 nike

我想在 C 中实现 LFSR(线性反馈移位寄存器)以生成随机位。当我尝试修改单个位或仅向内存块分配一个短值时,所有位都设置为 1。我该如何阻止这种情况发生?

struct lfsr{
//...
union{
unsigned short ff_0 : 1;
unsigned short ff_1 : 1;
//...
unsigned short ff_f : 1;
unsigned short ff;
}flip_flops;
};

int main() {
struct lfsr gen;
gen.flip_flops.ff = 1; //all the ff's set to 1
gen.flip_flops.ff = htons(0x0001);//all the ff's set to 1
gen.flip_flops.f_0 = 1; //all the ff's set to 1
gen.flip_flops.f_0 = 0; //all the ff's set to 0
}

最佳答案

问题在于 union 意味着每个 一位位域成员访问完全相同的一位。你要做的是

union lfsr{
//...
struct {
unsigned short ff_0 : 1;
unsigned short ff_1 : 1;
//...
unsigned short ff_f : 1;
}flip_flops;

unsigned short ff;
};

关于c - 我不能在 C 中操作位字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57724837/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com